Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,6 +3,7 @@ import gradio as gr
|
|
| 3 |
def test(input_text):
|
| 4 |
return f"Your text was: {input_text}"
|
| 5 |
|
|
|
|
| 6 |
demo = gr.Interface(fn=test, inputs="text", outputs="text")
|
| 7 |
|
| 8 |
if __name__ == "__main__":
|
|
|
|
| 3 |
def test(input_text):
|
| 4 |
return f"Your text was: {input_text}"
|
| 5 |
|
| 6 |
+
|
| 7 |
demo = gr.Interface(fn=test, inputs="text", outputs="text")
|
| 8 |
|
| 9 |
if __name__ == "__main__":
|