{
"providers": {
"litellm": {
"apiKey": "${LITELLM_MASTER_KEY}",
"baseUrl": "http://localhost:4000",
"api": "openai-completions",
"models": [
{
"id": "gpt-4o",
"name": "GPT-4o (via LiteLLM)",
"input": ["text", "image"],
"contextWindow": 128000,
"maxTokens": 16384,
"cost": { "input": 2.5, "output": 10, "cacheRead": 0, "cacheWrite": 0 }
},
{
"id": "claude-sonnet",
"name": "Claude Sonnet (via LiteLLM)",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 200000,
"maxTokens": 8192,
"cost": { "input": 3, "output": 15, "cacheRead": 0.3, "cacheWrite": 0 }
}
]
}
}
}