Zachary Greathouse commited on
Commit
7a403a7
·
unverified ·
1 Parent(s): e07c653

updates anthropic model (#24)

Browse files
Files changed (1) hide show
  1. src/integrations/anthropic.py +1 -1
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-3-5-sonnet-latest"
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: