Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Oysiyl
/
text-translation-elvish-quenya
like
0
Running
App
Files
Files
Community
e81c4be
text-translation-elvish-quenya
/
app.py
Oysiyl
Create app.py
16dcf5a
verified
2 months ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()