chore: default to auto model instead of sonnet (#1429)
Co-authored-by: Letta Code <noreply@letta.com>
This commit is contained in:
@@ -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
|
||||
---
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user