-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.json
More file actions
10 lines (10 loc) · 958 Bytes
/
Copy pathmodels.json
File metadata and controls
10 lines (10 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
{
"_README": "Models to sample. `id` is the (stable) folder name under corpus/samples/. The model VERSION to call comes from the `modelEnv` env var (set it in .env, e.g. XAI_MODEL=grok-4) so you can bump model versions without editing this file; `model` here is only the fallback default if that env var is unset. `key` is the env var holding the provider's API key (never commit keys). A model whose key is unset is skipped.",
"maxTokens": 4000,
"models": [
{ "id": "claude-opus", "provider": "anthropic", "model": "claude-opus-4-8", "modelEnv": "ANTHROPIC_MODEL", "key": "ANTHROPIC_API_KEY" },
{ "id": "gpt", "provider": "openai", "model": "gpt-5", "modelEnv": "OPENAI_MODEL", "key": "OPENAI_API_KEY" },
{ "id": "gemini", "provider": "google", "model": "gemini-2.5-pro", "modelEnv": "GEMINI_MODEL", "key": "GEMINI_API_KEY" },
{ "id": "grok", "provider": "xai", "model": "grok-4", "modelEnv": "XAI_MODEL", "key": "XAI_API_KEY" }
]
}