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...
0e071ad
test-chat-interface
/
app.py
abidlabs
HF Staff
Update app.py
0e071ad
almost 2 years ago
raw
Copy download link
history
blame
Safe
140 Bytes
import
gradio
as
gr
def
test
(
message, history
):
print
(
"history"
, history)
return
message
chatbot = gr.ChatInterface(test).launch()