You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defcreate_agent(callback_handler: BaseCallbackHandler, model_name: str) ->StateGraph:
config=model_configurations.get(model_name)
ifnotconfig:
raiseValueError(f"Unsupported model name: {model_name}")
ifnotconfig.api_key:
raiseValueError(f"API key for model '{model_name}' is not set. Please check your environment variables or secrets configuration.")
llm=ChatOpenAI(
model=config.model_name,
api_key=config.api_key,
callbacks=[callback_handler],
streaming=True,
base_url=config.base_url,
# temperature=0.1,# default_headers={"HTTP-Referer": "https://snowchat.streamlit.app/", "X-Title": "Snowchat"},
)
llm_with_tools=llm.bind_tools(tools)
# print("llm_with_tools:", llm_with_tools)defllm_agent(state: MessagesState):
return {"messages": [llm_with_tools.invoke([sys_msg] +state.messages)]}
builder=StateGraph(MessagesState)
builder.add_node("llm_agent", llm_agent)
builder.add_node("tools", ToolNode(tools))
builder.add_edge(START, "llm_agent")
builder.add_conditional_edges("llm_agent", tools_condition)
builder.add_edge("tools", "llm_agent")
# builder.add_edge("llm_agent", END)react_graph=builder.compile(checkpointer=memory)
# png_data = react_graph.get_graph(xray=True).draw_mermaid_png()# with open("graph_2.png", "wb") as f:# f.write(png_data)# image = Image.open(BytesIO(png_data))# st.image(image, caption="React Graph")returnreact_graph
result = react_graph.invoke(state, config=config, debug=True)
And I executed it and obtained the following result: The final AIMessage output from the result, but I want to obtain the ToolMassage in the agent's answer. How should I do it?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have built an agent as shown below:
result = react_graph.invoke(state, config=config, debug=True)
And I executed it and obtained the following result:
The final AIMessage output from the result, but I want to obtain the ToolMassage in the agent's answer. How should I do it?
Beta Was this translation helpful? Give feedback.
All reactions