Update my_agent.py
Browse files- 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
|
| 19 |
-
|
| 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 ---
|