Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assemblyai/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.36.0"
__version__ = "0.37.0"
6 changes: 3 additions & 3 deletions assemblyai/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down