Jellyfish042's picture
Create app.py
1a8c724
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=Flase)