File size: 218 Bytes
68e9609
 
d3811c5
 
68e9609
 
d3811c5
68e9609
1
2
3
4
5
6
7
8
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()