Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
ci-base
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF staff
commited on
Dec 13, 2024
Commit
d85614c
·
verified
·
1 Parent(s):
de4ff17
Create app.py
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()