ajwthompson commited on
Commit
d54d3d5
·
1 Parent(s): 4dc27d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -65,7 +65,7 @@ def my_inference_function(name):
65
  gradio_interface = gr.Interface(
66
  fn = chat,
67
  inputs = ["text", state, agent_state],
68
- outputs = "text"
69
  )
70
  gradio_interface.launch()
71
 
 
65
  gradio_interface = gr.Interface(
66
  fn = chat,
67
  inputs = ["text", state, agent_state],
68
+ outputs = ["text", state]
69
  )
70
  gradio_interface.launch()
71