fix: patch default model (#670)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-01-24 20:10:40 -08:00
committed by GitHub
parent 07992a7746
commit fd7ca18066
3 changed files with 55 additions and 10 deletions

View File

@@ -68,12 +68,12 @@ export const commands: Record<string, Command> = {
return "Opening message search...";
},
},
"/plan": {
desc: "Enter plan mode",
"/connect": {
desc: "Connect your LLM API keys (OpenAI, Anthropic, etc.)",
order: 17,
handler: () => {
// Handled specially in App.tsx
return "Entering plan mode...";
// Handled specially in App.tsx - opens ProviderSelector
return "Opening provider connection...";
},
},
"/clear": {
@@ -263,12 +263,12 @@ export const commands: Record<string, Command> = {
},
// === Session management (order 40-49) ===
"/connect": {
desc: "Connect your LLM API keys (OpenAI, Anthropic, etc.)",
"/plan": {
desc: "Enter plan mode",
order: 40,
handler: () => {
// Handled specially in App.tsx - opens ProviderSelector
return "Opening provider connection...";
// Handled specially in App.tsx
return "Entering plan mode...";
},
},
"/disconnect": {