From a747dbd24bdc4f26fd21a3f94b8d768208d94d6c Mon Sep 17 00:00:00 2001 From: ccurme Date: Thu, 7 Nov 2024 11:16:29 -0500 Subject: [PATCH] anthropic[patch]: remove retired model from tests (#27965) `claude-instant` was [retired yesterday](https://docs.anthropic.com/en/docs/resources/model-deprecations). --- libs/partners/anthropic/tests/integration_tests/test_llms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/partners/anthropic/tests/integration_tests/test_llms.py b/libs/partners/anthropic/tests/integration_tests/test_llms.py index 26cfac8a2e..b3018c192f 100644 --- a/libs/partners/anthropic/tests/integration_tests/test_llms.py +++ b/libs/partners/anthropic/tests/integration_tests/test_llms.py @@ -24,14 +24,14 @@ def test_anthropic_model_param() -> None: def test_anthropic_call() -> None: """Test valid call to anthropic.""" - llm = Anthropic(model="claude-instant-1") # type: ignore[call-arg] + llm = Anthropic(model="claude-2.1") # type: ignore[call-arg] output = llm.invoke("Say foo:") assert isinstance(output, str) def test_anthropic_streaming() -> None: """Test streaming tokens from anthropic.""" - llm = Anthropic(model="claude-instant-1") # type: ignore[call-arg] + llm = Anthropic(model="claude-2.1") # type: ignore[call-arg] generator = llm.stream("I'm Pickle Rick") assert isinstance(generator, Generator)