Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
hysts-debug/sample-chat
abidlabs
/
sample-chat
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f37b501
sample-chat
/
app.py
hysts
HF staff
Update
7dec3b3
2 months ago
raw
Copy download link
history
blame
Safe
102 Bytes
import
gradio
as
gr
def
fn
(
message, history
):
return
message
gr.ChatInterface(fn=fn).launch()