Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ def postproccess(responce):
|
|
14 |
try:
|
15 |
return ' '.join(x['entity_group'] for x in responce)
|
16 |
except Exception as ex:
|
17 |
-
print(responce.
|
18 |
print(f"Exception: {ex}")
|
19 |
return f"Exception: {ex}"
|
20 |
|
|
|
14 |
try:
|
15 |
return ' '.join(x['entity_group'] for x in responce)
|
16 |
except Exception as ex:
|
17 |
+
print(list(responce.items()))
|
18 |
print(f"Exception: {ex}")
|
19 |
return f"Exception: {ex}"
|
20 |
|