fix: switch helper LLM to claude-sonnet-4-6 for 1M context support
Haiku 4.5 has a 200K context limit which causes SSE errors when sessions grow large. Sonnet 4.6 supports 1M tokens at $3/$15 per million.
This commit is contained in:
parent
5c4d4700b3
commit
c87ce03c67
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ class HelperLLM:
|
|||
def __init__(
|
||||
self,
|
||||
api_key: str | None = None,
|
||||
model: str = "claude-haiku-4-5-20251001",
|
||||
model: str = "claude-sonnet-4-6-20260217",
|
||||
base_url: str = "https://api.anthropic.com",
|
||||
) -> None:
|
||||
"""Initialize the helper LLM client.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue