Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync sdk code with OSS repo #108

Merged
merged 2 commits into from
Feb 3, 2025
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