docs/how_to/agent_executor/ #28180
Replies: 1 comment
-
model_with_tools = model.bind_tools(tools) response = model_with_tools.invoke([HumanMessage(content="Hi!")]) print(f"ContentString: {response.content}") am getting the empyt content |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
docs/how_to/agent_executor/
This section will cover building with the legacy LangChain AgentExecutor. These are fine for getting started, but past a certain point, you will likely want flexibility and control that they do not offer. For working with more advanced agents, we'd recommend checking out LangGraph Agents or the migration guide
https://python.langchain.com/docs/how_to/agent_executor/
Beta Was this translation helpful? Give feedback.
All reactions