increase max_tokens to realistic limit

This commit is contained in:
2026-03-04 16:22:50 -07:00
parent a8e42d25d5
commit e34f82b181
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ class Settings(BaseSettings):
anthropic_api_key: str
model: str = "claude-sonnet-4-5-20250929"
safedir: str = "./workspace"
max_tokens: int = 500
max_tokens: int = 8096
model_config = {"env_file": PROJECT_ROOT / ".env"}