anandshende-videocx commited on
Commit
24c9d4e
·
verified ·
1 Parent(s): 89ce62d

Update my_agent.py

Browse files
Files changed (1) hide show
  1. my_agent.py +2 -3
my_agent.py CHANGED
@@ -15,9 +15,8 @@ from my_tools import wiki_search, arxiv_search, web_search, visit_webpage, trans
15
 
16
  hf_token = os.getenv("HF_TOKEN")
17
 
18
- class AgentResponseState(AgentState):
19
- response: str
20
- messages: list[HumanMessage | AIMessage]
21
 
22
 
23
  # --- Basic Agent Definition ---
 
15
 
16
  hf_token = os.getenv("HF_TOKEN")
17
 
18
+ class GraphMessagesState(MessagesState):
19
+ question: str
 
20
 
21
 
22
  # --- Basic Agent Definition ---