DnD / app.py
Ceetar's picture
textbox
8e0ad92
raw
history blame
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()