Files
nas-tools/litellm/config/litellm.yaml
T
Gan, Jimmy e87a51cbc7
Run Tests / Backend Tests (push) Failing after 1m45s
Run Tests / Frontend Tests (push) Failing after 50s
Run Tests / Test Summary (push) Failing after 49s
feat: add cc-kiro model with User-Agent header to bypass blocking
2026-04-02 23:25:55 +08:00

40 lines
954 B
YAML

model_list:
- model_name: claude-arch
litellm_params:
model: anthropic/claude-sonnet-4-6
api_key: os.environ/ANTHROPIC_API_KEY
timeout: 30
max_retries: 1
- model_name: codex-exec
litellm_params:
model: openai/gpt-4.1
api_key: os.environ/OPENAI_API_KEY
timeout: 30
max_retries: 1
- model_name: gemini-large
litellm_params:
model: gemini/gemini-1.5-pro
api_key: os.environ/GEMINI_API_KEY
timeout: 30
max_retries: 1
- model_name: cc-kiro
litellm_params:
model: openai/claude-opus-4-6
api_base: https://www.bytecatcode.org/v1
api_key: os.environ/CC_KIRO_API_KEY
extra_headers: {"User-Agent": "Mozilla/5.0"}
timeout: 60
max_retries: 2
general_settings:
# Optional - leave empty in .env to disable gateway auth.
master_key: os.environ/LITELLM_MASTER_KEY
router_settings:
timeout: 30
num_retries: 1
retry_after: 1