Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yym68686
/
TravelMaster
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
73cee8c
TravelMaster
/
app.py
yym68686
first commit
73cee8c
12 months ago
raw
Copy download link
history
blame
Safe
165 Bytes
import
gradio
as
gr
def
print_text
(
text
):
return
"Hello World, "
+ text
interface = gr.Interface(fn=print_text, inputs=
"text"
, outputs=
"text"
)
interface.launch()