Gyr0MAN commited on
Commit
de6be74
β€’
1 Parent(s): 97835c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -2,6 +2,7 @@ import gradio as gr
2
 
3
 
4
  def response(inputText, history):
5
- return f"echo {inputText}"
 
6
 
7
  gr.ChatInterface(generate_text).launch()
 
2
 
3
 
4
  def response(inputText, history):
5
+ outputText = f"echo {inputText}"
6
+ return outputText
7
 
8
  gr.ChatInterface(generate_text).launch()