Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sepidpy
/
summarisation-basic
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
summarisation-basic
/
app.py
sepidpy
Create app.py
682f98b
over 2 years ago
raw
Copy download link
history
blame
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()