abidlabs HF Staff commited on
Commit
0e071ad
·
1 Parent(s): de06546

Update app.py

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