From d6f29a0f4b7243ce9a57af0017537511740a75f3 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Mon, 24 Feb 2025 14:32:00 -0500 Subject: [PATCH] Update AnthropicLLMService to use claude-3-7-sonnet-20250219 by default --- CHANGELOG.md | 3 +++ src/pipecat/services/anthropic.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a71ae5f02..bdd305fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/src/pipecat/services/anthropic.py b/src/pipecat/services/anthropic.py index a7c5fd5f0..dcf8bc242 100644 --- a/src/pipecat/services/anthropic.py +++ b/src/pipecat/services/anthropic.py @@ -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,