abidlabs HF Staff commited on
Commit
f977123
·
1 Parent(s): 02162a7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ def test(message, history):
2
+ print("history", history)
3
+ return message
4
+
5
+ chatbot = ChatInterface(test).launch()