Skip to content

Commit

Permalink
using sonnet 3.5 on anthropic
Browse files Browse the repository at this point in the history
  • Loading branch information
PsicoThePato committed Jun 27, 2024
1 parent 5891c4d commit da0f20e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/synthia/miner/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class AnthropicSettings(BaseSettings):
api_key: str
model: str = "claude-3-opus-20240229"
model: str = "claude-3-5-sonnet-20240620"
max_tokens: int = 3000
temperature: float = 0.5

Expand Down
2 changes: 1 addition & 1 deletion src/synthia/validator/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class ValidatorSettings(BaseSettings):
api_key: str # anthropic api key
# == Text generation ==
model: str = "anthropic/claude-3.5-sonnet"
model: str = "claude-3-5-sonnet-20240620"
temperature: float = 0.2
max_tokens: int = 1000

Expand Down

0 comments on commit da0f20e

Please sign in to comment.