Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ceetar
/
DnD
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8e0ad92
DnD
/
app.py
Ceetar
textbox
8e0ad92
over 1 year ago
raw
Copy download link
history
blame
Safe
235 Bytes
import
gradio
as
gr
#generates an AI description of your character
def
describe
(
names
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=describe, inputs=gr.Textbox(label=
"HI"
,show_label=
True
), outputs=
"text"
)
iface.launch()