Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -207,9 +207,10 @@ state = VisitorState(
|
|
207 |
department_name=department_name,
|
208 |
)
|
209 |
# Execute workflow
|
210 |
-
result = compiled_graph.invoke(state.dict())
|
211 |
-
|
212 |
print(state)
|
|
|
213 |
|
214 |
"""
|
215 |
# ---------------------------------------
|
|
|
207 |
department_name=department_name,
|
208 |
)
|
209 |
# Execute workflow
|
210 |
+
#result = compiled_graph.invoke(state.dict())
|
211 |
+
result = compiled_graph.invoke(state.model_dump())
|
212 |
print(state)
|
213 |
+
print(result)
|
214 |
|
215 |
"""
|
216 |
# ---------------------------------------
|