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()