Gyr0MAN commited on
Commit
97835c2
Β·
verified Β·
1 Parent(s): 89f0433

Create app.py

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