Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ivanrs
/
iteso-lecture
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
de2940f
iteso-lecture
/
app.py
Ivanrs
Rename main.py to app.py
de2940f
verified
2 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
179 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello Class from ITESO, your name is: "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()