feat: letta code

This commit is contained in:
cpacker
2025-10-24 21:19:24 -07:00
commit 70ac76040d
139 changed files with 15340 additions and 0 deletions

100
src/models.json Normal file
View File

@@ -0,0 +1,100 @@
[
{
"id": "default",
"handle": "anthropic/claude-sonnet-4-5-20250929",
"label": "Default (recommended)",
"description": "Use the default model (currently Sonnet 4.5)",
"isDefault": true,
"updateArgs": { "contextWindow": 200000 }
},
{
"id": "opus",
"handle": "anthropic/claude-opus-4-1-20250805",
"label": "Claude Opus 4.1",
"description": "Anthropic's smartest (and slowest) model",
"updateArgs": { "contextWindow": 200000 }
},
{
"id": "gpt-5-codex",
"handle": "openai/gpt-5-codex",
"label": "GPT-5-Codex",
"description": "A variant of GPT-5 optimized for agentic coding",
"updateArgs": {
"reasoningEffort": "medium",
"verbosity": "medium",
"contextWindow": 272000
}
},
{
"id": "gpt-5-minimal",
"handle": "openai/gpt-5",
"label": "GPT-5 (minimal)",
"description": "OpenAI's latest model (limited reasoning, fastest GPT-5 option)",
"updateArgs": {
"reasoningEffort": "minimal",
"verbosity": "medium",
"contextWindow": 272000
}
},
{
"id": "gpt-5-low",
"handle": "openai/gpt-5",
"label": "GPT-5 (low)",
"description": "OpenAI's latest model (some reasoning enabled)",
"updateArgs": {
"reasoningEffort": "low",
"verbosity": "medium",
"contextWindow": 272000
}
},
{
"id": "gpt-5-medium",
"handle": "openai/gpt-5",
"label": "GPT-5 (medium)",
"description": "OpenAI's latest model (using their recommended reasoning level)",
"updateArgs": {
"reasoningEffort": "medium",
"verbosity": "medium",
"contextWindow": 272000
}
},
{
"id": "gpt-5-high",
"handle": "openai/gpt-5",
"label": "GPT-5 (high)",
"description": "OpenAI's latest model (maximum reasoning depth)",
"updateArgs": {
"reasoningEffort": "high",
"verbosity": "medium",
"contextWindow": 272000
}
},
{
"id": "gemini-flash",
"handle": "google_ai/gemini-2.5-flash",
"label": "Gemini 2.5 Flash",
"description": "Google's fastest model",
"updateArgs": { "contextWindow": 200000 }
},
{
"id": "gemini-pro",
"handle": "google_ai/gemini-2.5-pro",
"label": "Gemini 2.5 Pro",
"description": "Google's smartest model",
"updateArgs": { "contextWindow": 200000 }
},
{
"id": "gpt-4.1",
"handle": "openai/gpt-4.1",
"label": "GPT-4.1",
"description": "OpenAI's most recent non-reasoner model",
"updateArgs": { "contextWindow": 200000 }
},
{
"id": "o4-mini",
"handle": "openai/o4-mini",
"label": "o4-mini",
"description": "OpenAI's latest o-series reasoning model",
"updateArgs": { "contextWindow": 200000 }
}
]