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