Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
palsnagaraj
/
aisa
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
222ab1e
aisa
/
app.py
sistudent-at-300100160591
Add Gradio app.py and dependencies for deployment
222ab1e
about 1 month ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
! Welcome to AISA"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()