Compare commits

...
Author SHA1 Message Date
Sydney Runkle 87d432e1c7 Revert changes to keep only chat_agent_executor modifications 2025-11-13 10:01:44 -05:00
Sydney Runkle 425224c69b linting 2025-11-13 09:42:47 -05:00
Sydney Runkle 8cc698b4e0 theoretically more backwards compat 2025-11-08 07:28:19 -06:00
@@ -78,7 +78,7 @@ with warnings.catch_warnings():
warnings.filterwarnings(
"ignore",
category=LangGraphDeprecatedSinceV10,
message="AgentState has been moved to langchain.agents.*",
message="AgentState has been moved to `langchain.agents`.*",
)
@deprecated(
@@ -95,11 +95,11 @@ with warnings.catch_warnings():
warnings.filterwarnings(
"ignore",
category=LangGraphDeprecatedSinceV10,
message="AgentStatePydantic has been moved to langchain.agents.*",
message="AgentStatePydantic has been moved to `langchain.agents`.*",
)
@deprecated(
"AgentStateWithStructuredResponsePydantic has been moved to `langchain.agents`. Please update your import to `from langchain.agents import AgentStateWithStructuredResponsePydantic`.",
"AgentStateWithStructuredResponsePydantic has deprecated. The new `langchain.agents.AgentState` contains the structured response by default.",
category=LangGraphDeprecatedSinceV10,
)
class AgentStateWithStructuredResponsePydantic(AgentStatePydantic):