Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
heera-ai
/
summary_generation
like
0
Runtime error
App
Files
Files
Community
4a8cf84
summary_generation
/
app.py
heera-ai
inline
4a8cf84
over 1 year ago
raw
Copy download link
history
blame
Safe
162 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(inline =
False
)