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.
This commit is contained in:
ccurme 2025-07-22 16:51:39 -03:00 committed by GitHub
parent a02ad3d192
commit 3672bbc71e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,8 +9,8 @@ from pydantic import BaseModel, Field
from langchain_anthropic.experimental import ChatAnthropicTools
MODEL_NAME = "claude-3-sonnet-20240229"
BIG_MODEL_NAME = "claude-3-opus-20240229"
MODEL_NAME = "claude-3-5-haiku-latest"
BIG_MODEL_NAME = "claude-opus-4-20250514"
#####################################
### Test Basic features, no tools ###