Update rag_langgraph.py
Browse files- rag_langgraph.py +1 -1
rag_langgraph.py
CHANGED
@@ -133,7 +133,7 @@ def run_multi_agent(prompt):
|
|
133 |
for s in graph.stream(
|
134 |
{
|
135 |
"messages": [
|
136 |
-
HumanMessage(content=prompt)
|
137 |
]
|
138 |
}
|
139 |
):
|
|
|
133 |
for s in graph.stream(
|
134 |
{
|
135 |
"messages": [
|
136 |
+
HumanMessage(content=str(prompt))
|
137 |
]
|
138 |
}
|
139 |
):
|