Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hysts-debug
/
sample-chat
like
0
Sleeping
App
Files
Files
Community
hysts
HF staff
commited on
Nov 29, 2024
Commit
7dec3b3
•
1 Parent(s):
ead2f2b
Update
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
4
+
def fn(message, history):
5
+
return message
6
+
7
+
8
+
gr.ChatInterface(fn=fn).launch()