Help Center← Back to Dashboard
Getting Started
What is Aithroyz?Quickstart: First EnvironmentCloud CredentialsPlans & Approvals
Environments
OverviewLifecycle PhasesTTL Auto-DestroyExtending TTLDestroying an Environment
Tools Reference
OverviewElastic Stack (SIEM)Wazuh (XDR)MITRE CalderaTheHive & DFIR-IRISVelociraptorOpenCTIGrafana + PrometheusShuffle SOARn8nUptime KumaLLM GatewayOpen WebUIFlowiseOpenClawOllamaQdrantLangfusePortainerGiteaSonarQubeCode ServerMattermostMinIOMetabaseHashiCorp VaultKeycloak SSONetBoxLocalStack
Access & Security
Google SSOTenant IsolationPasskeys & MFATeam Members
API & Integrations
API KeysMCP Tools (Clevername)Terraform ExportWebhooks & Callbacks
Stack Presets
SOC PlatformIR / DFIR LabThreat HuntingQuick Sandbox
Settings
Cloud KeysAPI KeysBillingAudit Log
Troubleshooting
Common IssuesDeployment FailuresDNS & ConnectivityTool Health Checks
Aithroyz Help
Help CenterTools ReferenceLLM Gateway

LLM Gateway

The LLM Gateway (powered by LiteLLM) routes AI requests to OpenAI, Anthropic, and Gemini with rate limiting, cost tracking, and a unified API interface.

The LLM Gateway provides a single OpenAI-compatible endpoint for all AI providers. Configure your provider API keys in the gateway, then route all your tool integrations through one URL.

Access

URL: https://llm.<env-name>.ops.aithroyz.com
LiteLLM UI: https://llm.<env-name>.ops.aithroyz.com/ui

Using the unified API

# OpenAI-compatible endpoint — works with any OpenAI SDK
curl https://llm.<env-name>.ops.aithroyz.com/v1/chat/completions \
  -H "Authorization: Bearer <your-litellm-key>" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

# To use Claude instead, just change the model:
# "model": "claude-3-5-sonnet-20241022"
Related Articles
API KeysRead article →MCP ToolsRead article →