Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
not-lain
/
test-gradio-ci
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
not-lain
commited on
May 23, 2024
Commit
a8d5e97
·
verified
·
1 Parent(s):
b1528e0
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
4
+
def talk(text):
5
+
return "hi "+ text
6
+
gr.Interface(talk , "text","text").launch()