Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,12 +3,9 @@ from my_code import gradio_wrapper
|
|
| 3 |
|
| 4 |
def gradio_wrapper(name):
|
| 5 |
output_wrapper = greet(name)
|
| 6 |
-
return
|
| 7 |
-
|
| 8 |
|
| 9 |
|
| 10 |
demo = gr.Interface(fn=gradio_wrapper, inputs="textbox", outputs="textbox")
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
demo.launch()
|
|
|
|
| 3 |
|
| 4 |
def gradio_wrapper(name):
|
| 5 |
output_wrapper = greet(name)
|
| 6 |
+
return output_wrapper
|
|
|
|
| 7 |
|
| 8 |
|
| 9 |
demo = gr.Interface(fn=gradio_wrapper, inputs="textbox", outputs="textbox")
|
| 10 |
|
|
|
|
|
|
|
| 11 |
demo.launch()
|