Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import gradio as gr
|
|
2 |
|
3 |
|
4 |
def response(inputText, history):
|
5 |
-
|
|
|
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()
|