dwfefef commited on
Commit
df71c7b
·
verified ·
1 Parent(s): 5af9bad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=60) # 60 second 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