Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -242,6 +242,8 @@ def gradio_interface(visitor_name, visitor_mobile, visitor_email, doctor_name, d
|
|
242 |
# Execute workflow
|
243 |
#result = compiled_graph.invoke(state.dict())
|
244 |
result = compiled_graph.invoke(state.model_dump())
|
|
|
|
|
245 |
return "\n".join(result["messages"])
|
246 |
#return "Here returning a string for testing gradio interface!" + visitor_name
|
247 |
|
|
|
242 |
# Execute workflow
|
243 |
#result = compiled_graph.invoke(state.dict())
|
244 |
result = compiled_graph.invoke(state.model_dump())
|
245 |
+
print(state)
|
246 |
+
print(result)
|
247 |
return "\n".join(result["messages"])
|
248 |
#return "Here returning a string for testing gradio interface!" + visitor_name
|
249 |
|