fionasu commited on
Commit
958523a
·
verified ·
1 Parent(s): 05c0ce7

define echo function and set up chat interface

Browse files
Files changed (1) hide show
  1. create app.py +7 -0
create app.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def echo(message, history):
4
+ return
5
+
6
+ chatbot = gr.ChatInterface(echo)
7
+ chatbot.launch()