diff --git a/assemblyai/types.py b/assemblyai/types.py index daaff28..1c6f3de 100644 --- a/assemblyai/types.py +++ b/assemblyai/types.py @@ -1991,16 +1991,6 @@ class LemurModel(str, Enum): Legacy model. The same as `claude2_0`. """ - claude_instant1_2 = "anthropic/claude-instant-1-2" - """ - Claude Instant is a legacy model that is optimized for speed and cost. Claude Instant can complete requests up to 20% faster than Claude 2.0. - """ - - basic = "basic" - """ - Legacy model. The same as `claude_instant1_2`. - """ - mistral7b = "assemblyai/mistral-7b" """ Mistral 7B is an open source model that works well for summarization and answering questions. diff --git a/tests/unit/test_lemur.py b/tests/unit/test_lemur.py index d7ab969..dd6acee 100644 --- a/tests/unit/test_lemur.py +++ b/tests/unit/test_lemur.py @@ -544,8 +544,6 @@ def test_lemur_task_succeeds_input_text(httpx_mock: HTTPXMock): aai.LemurModel.claude2_1, aai.LemurModel.claude2_0, aai.LemurModel.default, - aai.LemurModel.claude_instant1_2, - aai.LemurModel.basic, aai.LemurModel.mistral7b, ), )