pwilczewski commited on
Commit
89418a5
·
1 Parent(s): bcc9a7a

include all output

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ graph = workflow.compile()
92
 
93
  def greet(name):
94
  resp = graph.invoke({"messages": [HumanMessage(content="Run the analysis")]})
95
- return resp['messages']
96
 
97
  demo = gr.Interface(fn=greet, inputs="text", outputs="text")
98
  demo.launch()
 
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")
98
  demo.launch()