chore: default to auto model instead of sonnet (#1429)

Co-authored-by: Letta Code <noreply@letta.com>
This commit is contained in:
Sarah Wooders
2026-03-18 10:18:01 -07:00
committed by GitHub
parent 8386268d43
commit 16d060a7fa
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ name: recall
description: Search conversation history to recall past discussions, decisions, and context
tools: Bash, Read, TaskOutput
skills: searching-messages
model: haiku
model: auto-fast
memoryBlocks: none
mode: stateless
---

View File

@@ -5,7 +5,7 @@
/**
* Default model ID to use when no model is specified
*/
export const DEFAULT_MODEL_ID = "sonnet";
export const DEFAULT_MODEL_ID = "auto";
/**
* Default model handle to use for conversation compaction / summarization.

View File

@@ -2,6 +2,7 @@
"models": [
{
"id": "auto",
"isDefault": true,
"handle": "letta/auto",
"label": "Auto",
"description": "Automatically select the best model",
@@ -21,7 +22,6 @@
"handle": "anthropic/claude-sonnet-4-6",
"label": "Sonnet 4.6",
"description": "Anthropic's new Sonnet model (high reasoning)",
"isDefault": true,
"isFeatured": true,
"updateArgs": {
"context_window": 200000,