Jellyfish042 commited on
Commit
1a8c724
1 Parent(s): a71e823

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def text_processing(text):
4
+ return text * 2
5
+
6
+ iface = gr.Interface(fn = text_processing, inputs='text', outputs=['text'], title='test', description='test space')
7
+
8
+ iface.launch(inline=Flase)