From 0a1d1e4f609bad6dc114d01d5aff3424912479f1 Mon Sep 17 00:00:00 2001 From: Marcus Olsson <8396880+marcusolsson@users.noreply.github.com> Date: Mon, 27 Jan 2025 19:52:21 +0100 Subject: [PATCH 1/2] fix(spec, sdk): remove references of Claude 1 and Basic models (#7201) GitOrigin-RevId: ad669bfbc9b07a31d10cde02894e2b65010e4403 --- assemblyai/types.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assemblyai/types.py b/assemblyai/types.py index 447cbbe..1fb9c3c 100644 --- a/assemblyai/types.py +++ b/assemblyai/types.py @@ -1991,17 +1991,17 @@ class LemurModel(str, Enum): claude2_1 = "anthropic/claude-2-1" """ - Claude 2.1 is a legacy model similar to Claude 2.0. The key difference is that it minimizes model hallucination and system prompts, has a larger context window, and performs better in citations. + Deprecated: Claude 2.1 is deprecated and will stop working on Feb 6th, 2025. """ claude2_0 = "anthropic/claude-2" """ - Claude 2.0 is a legacy model that has good complex reasoning. It offers more nuanced responses and improved contextual comprehension. + Deprecated: Claude 2.0 is deprecated and will stop working on Feb 6th, 2025. """ default = "default" """ - Legacy model. The same as `claude2_0`. + Deprecated: Legacy model. The same as `claude2_0` and will stop working on Feb 6th, 2025. """ mistral7b = "assemblyai/mistral-7b" From 58d5f6696dfb86f573f6214e3501617c56f5afc4 Mon Sep 17 00:00:00 2001 From: Marcus Olsson <8396880+marcusolsson@users.noreply.github.com> Date: Wed, 29 Jan 2025 14:05:21 +0100 Subject: [PATCH 2/2] fix(sdk): Bump versions for Python, Go, and Typescript (#7981) GitOrigin-RevId: 0c4b5b870ed3cb099c8f163d0acd839e6d6413a4 --- assemblyai/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assemblyai/__version__.py b/assemblyai/__version__.py index d9f2629..2d93b0c 100644 --- a/assemblyai/__version__.py +++ b/assemblyai/__version__.py @@ -1 +1 @@ -__version__ = "0.36.0" +__version__ = "0.37.0"