Jellyfish042's picture
Update app.py
e9e5a55
raw
history blame
212 Bytes
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)