Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
andreslu
/
orion
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
0f14897
orion
/
app.py
andreslu
Update app.py
ea1dd8e
about 2 years ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
uppercase
(
text
):
return
text.upper()
iface = gr.Interface(fn=uppercase, inputs=
"text"
, outputs=
"text"
)
iface.launch()