From 6eafcb324ef3e61757a6bd0a16e03ca7ae26b339 Mon Sep 17 00:00:00 2001 From: keenborder786 <21110290@lums.edu.pk> Date: Fri, 11 Jul 2025 05:34:51 +0500 Subject: [PATCH] [chore]: Remove the print statement --- libs/partners/anthropic/langchain_anthropic/chat_models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/partners/anthropic/langchain_anthropic/chat_models.py b/libs/partners/anthropic/langchain_anthropic/chat_models.py index 648117401a9..b7f77aedbc3 100644 --- a/libs/partners/anthropic/langchain_anthropic/chat_models.py +++ b/libs/partners/anthropic/langchain_anthropic/chat_models.py @@ -1306,7 +1306,6 @@ class ChatAnthropic(BaseChatModel): """Validate max_tokens.""" if values.get("max_tokens") is None: if "claude-opus-4" in values.get("model"): - print('hello') values["max_tokens"] = 32000 elif values.get("model") in ["claude-sonnet-4", "claude-3-7-sonnet"]: values["max_tokens"] = 64000