kaitwithkwk commited on
Commit
10a0507
·
verified ·
1 Parent(s): 7b2c281

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def echo(message, history):
4
+ return message
5
+
6
+ print("Hello, world!")
7
+
8
+ chatbot = gr.ChatInterface(echo, type="messages")
9
+
10
+ chatbot.launch()