File size: 212 Bytes
1a8c724 |
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=Flase) |