Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ClueAI
/
CLUE_AIGC
like
11
Runtime error
App
Files
Files
Community
45630b8
CLUE_AIGC
/
app.py
zxw
update
45630b8
about 2 years ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()