ebf036f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr def generate_poem(text): pass generate_poem_interface = gr.Interface( fn=generate_poem, inputs=[ gr.components.Textbox(lines=1, placeholder="First words of the poem"), ], outputs="text", )