217a305 ebb322e 217a305 c05a9c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr def greet(prompt): return "Hello " + prompt + "!!" iface = gr.Interface( fn=greet, inputs=gr.Textbox(lines=4, placeholder="Prompt here..."), outputs=gr.Textbox(lines=4), ) iface.launch()