Matthias Kleiner
commited on
Commit
·
f8ec8a1
1
Parent(s):
fb0908f
testing return
Browse files
app.py
CHANGED
|
@@ -95,6 +95,11 @@ def func(file, number_of_pages, secret):
|
|
| 95 |
output = result[0]
|
| 96 |
print(f"Output: {output}")
|
| 97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
# output, parsed_document = client.predict(file, number_of_pages)
|
| 99 |
# output, latex_output, latex_time, openai_time = client.predict(file, number_of_pages)
|
| 100 |
|
|
|
|
| 95 |
output = result[0]
|
| 96 |
print(f"Output: {output}")
|
| 97 |
|
| 98 |
+
for i in result:
|
| 99 |
+
print(i)
|
| 100 |
+
print("\n")
|
| 101 |
+
|
| 102 |
+
|
| 103 |
# output, parsed_document = client.predict(file, number_of_pages)
|
| 104 |
# output, latex_output, latex_time, openai_time = client.predict(file, number_of_pages)
|
| 105 |
|