Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
test-chat-interface
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Jul 13, 2023
Commit
f977123
·
1 Parent(s):
02162a7
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
def test(message, history):
2
+
print("history", history)
3
+
return message
4
+
5
+
chatbot = ChatInterface(test).launch()