Skip to content

Commit 3672bbc

Browse files
authored
fix(anthropic): update integration test models (#32189)
Multiple models were [retired](https://docs.anthropic.com/en/docs/about-claude/model-deprecations#model-status) yesterday. Tests remain broken until we figure out what to do with the legacy Anthropic LLM integration— currently uses their (legacy) text completions API, for which there appear to be no remaining supported models.
1 parent a02ad3d commit 3672bbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/partners/anthropic/tests/integration_tests/test_experimental.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
from langchain_anthropic.experimental import ChatAnthropicTools
1111

12-
MODEL_NAME = "claude-3-sonnet-20240229"
13-
BIG_MODEL_NAME = "claude-3-opus-20240229"
12+
MODEL_NAME = "claude-3-5-haiku-latest"
13+
BIG_MODEL_NAME = "claude-opus-4-20250514"
1414

1515
#####################################
1616
### Test Basic features, no tools ###

0 commit comments

Comments
 (0)