Update app.py
Browse files
app.py
CHANGED
@@ -33,10 +33,10 @@ def serverActivate():
|
|
33 |
def start():
|
34 |
import gradio as gr
|
35 |
|
36 |
-
def op():
|
37 |
return ""
|
38 |
|
39 |
-
demo = gr.Interface(fn=op, outputs="textbox")
|
40 |
|
41 |
demo.launch(share=True)
|
42 |
|
|
|
33 |
def start():
|
34 |
import gradio as gr
|
35 |
|
36 |
+
def op(name):
|
37 |
return ""
|
38 |
|
39 |
+
demo = gr.Interface(fn=op, inputs="textbox", outputs="textbox")
|
40 |
|
41 |
demo.launch(share=True)
|
42 |
|