Merge pull request #1278 from pipecat-ai/mb/claude-3-7

Update AnthropicLLMService to use claude-3-7-sonnet-20250219 by default
This commit is contained in:
Mark Backman
2025-02-24 15:41:28 -05:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -20,6 +20,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- `AnthropicLLMService` now uses `claude-3-7-sonnet-20250219` as the default
model.
- `RimeHttpTTSService` needs an `aiohttp.ClientSession` to be passed to the
constructor as all the other HTTP-based services.

View File

@@ -96,7 +96,7 @@ class AnthropicLLMService(LLMService):
self,
*,
api_key: str,
model: str = "claude-3-5-sonnet-20241022",
model: str = "claude-3-7-sonnet-20250219",
params: InputParams = InputParams(),
client=None,
**kwargs,