Spaces:
Running
Running
bug fix
Browse files
app.py
CHANGED
@@ -4,8 +4,8 @@ import json
|
|
4 |
DEBUG_MODE = False
|
5 |
|
6 |
def echo(text, request: gr.Request):
|
7 |
-
output_text = {"report1": SUCCESS} # Initialize as a dictionary
|
8 |
-
output_text["report2"] = "You inserted the text:
|
9 |
output_text["report3"] = text
|
10 |
if request:
|
11 |
if DEBUG_MODE:
|
|
|
4 |
DEBUG_MODE = False
|
5 |
|
6 |
def echo(text, request: gr.Request):
|
7 |
+
output_text = {"report1": "SUCCESS"} # Initialize as a dictionary
|
8 |
+
output_text["report2"] = "You inserted the text:"
|
9 |
output_text["report3"] = text
|
10 |
if request:
|
11 |
if DEBUG_MODE:
|