DnD / app.py
Ceetar's picture
trying labels
d3811c5
raw
history blame
No virus
218 Bytes
import gradio as gr
#generates an AI description of your character
def describe(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=describe, inputs=gr.Textbox(label="HI"), outputs="text")
iface.launch()