mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-15 15:02:33 +00:00
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:
@@ -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 ###
|
||||
|
||||
Reference in New Issue
Block a user