Spaces:
Runtime error
Runtime error
dwfefef
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ def research():
|
|
29 |
|
30 |
# Wait for the result with a timeout
|
31 |
try:
|
32 |
-
result = result_queue.get(timeout=
|
33 |
except queue.Empty:
|
34 |
result = "The research is taking longer than expected. Please try again with a simpler query."
|
35 |
|
|
|
29 |
|
30 |
# Wait for the result with a timeout
|
31 |
try:
|
32 |
+
result = result_queue.get(timeout=6000) # 60 second timeout
|
33 |
except queue.Empty:
|
34 |
result = "The research is taking longer than expected. Please try again with a simpler query."
|
35 |
|