Spaces:
Sleeping
Sleeping
pwilczewski
commited on
Commit
·
f229ac4
1
Parent(s):
89418a5
adding debug
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ workflow.add_edge("EDA", END)
|
|
91 |
graph = workflow.compile()
|
92 |
|
93 |
def greet(name):
|
94 |
-
resp = graph.invoke({"messages": [HumanMessage(content="Run the analysis")]})
|
95 |
return resp
|
96 |
|
97 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
|
|
91 |
graph = workflow.compile()
|
92 |
|
93 |
def greet(name):
|
94 |
+
resp = graph.invoke({"messages": [HumanMessage(content="Run the analysis")]}, debug=True)
|
95 |
return resp
|
96 |
|
97 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|