1a8c724 e9e5a55
1
2
3
4
5
6
7
8
import gradio as gr def text_processing(text): return text * 2 iface = gr.Interface(fn = text_processing, inputs='text', outputs=['text'], title='test', description='test space') iface.launch(inline=False)