Piux24 commited on
Commit
3fd9e1f
·
verified ·
1 Parent(s): 2fbff1b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def chat(message, history):
4
+ return "Hello! This is BIT-GPT 0.2.8 responding."
5
+
6
+ iface = gr.ChatInterface(chat)
7
+
8
+ iface.launch()