Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SuperRomanchik
/
Barkers
like
0
Sleeping
App
Files
Files
Community
259803f
Barkers
/
app.py
SuperRomanchik
Upload 5 files
259803f
verified
3 months ago
raw
Copy download link
history
blame
213 Bytes
import
gradio
as
gra
from
gena1
import
*
def
gen
(
topic
):
return
gena1(topic)
#define gradio interface and other parameters
app = gra.Interface(fn = gen, inputs=
"text"
, outputs=
"text"
)
app.launch()