From e94a5d753fe01aff1fa1592cd59d37fa64ef24a2 Mon Sep 17 00:00:00 2001 From: Mike Lambert Date: Thu, 10 Aug 2023 14:57:28 -0400 Subject: [PATCH] Move from test to supported claude-instant-1 model (#9066) Moves from "test" model to "claude-instant-1" model which is supported and has actual capacity --- libs/langchain/tests/integration_tests/llms/test_anthropic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/langchain/tests/integration_tests/llms/test_anthropic.py b/libs/langchain/tests/integration_tests/llms/test_anthropic.py index 1d0a9475b54..3604f61969c 100644 --- a/libs/langchain/tests/integration_tests/llms/test_anthropic.py +++ b/libs/langchain/tests/integration_tests/llms/test_anthropic.py @@ -11,14 +11,14 @@ from tests.unit_tests.callbacks.fake_callback_handler import FakeCallbackHandler def test_anthropic_call() -> None: """Test valid call to anthropic.""" - llm = Anthropic(model="test") + llm = Anthropic(model="claude-instant-1") output = llm("Say foo:") assert isinstance(output, str) def test_anthropic_streaming() -> None: """Test streaming tokens from anthropic.""" - llm = Anthropic(model="test") + llm = Anthropic(model="claude-instant-1") generator = llm.stream("I'm Pickle Rick") assert isinstance(generator, Generator)