Spaces:
Running
Running
Zachary Greathouse
commited on
updates anthropic model (#24)
Browse files
src/integrations/anthropic.py
CHANGED
|
@@ -43,7 +43,7 @@ class AnthropicConfig:
|
|
| 43 |
"""Immutable configuration for interacting with the Anthropic API using the asynchronous client."""
|
| 44 |
api_key: str = field(init=False)
|
| 45 |
system_prompt: str = SYSTEM_PROMPT
|
| 46 |
-
model: ModelParam = "claude-
|
| 47 |
max_tokens: int = 300
|
| 48 |
|
| 49 |
def __post_init__(self) -> None:
|
|
|
|
| 43 |
"""Immutable configuration for interacting with the Anthropic API using the asynchronous client."""
|
| 44 |
api_key: str = field(init=False)
|
| 45 |
system_prompt: str = SYSTEM_PROMPT
|
| 46 |
+
model: ModelParam = "claude-sonnet-4-5"
|
| 47 |
max_tokens: int = 300
|
| 48 |
|
| 49 |
def __post_init__(self) -> None:
|