Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
treadon
/
prompt-fungineer-355M
like
80
Runtime error
App
Files
Files
xet
Community
7
Fetching metadata from the HF Docker repository...
59696ca
prompt-fungineer-355M
/
app.py
treadon
Add application file
59696ca
over 2 years ago
raw
Copy download link
history
blame
134 Bytes
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()