tecuts commited on
Commit
90e4830
·
verified ·
1 Parent(s): b136fd6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -244,7 +244,7 @@ async def generate_streaming_response(messages: List[Dict], use_search: bool, te
244
  query = args.get("query", "").strip()
245
  if query:
246
  # Map tool_call_id to the task
247
- search_tasks[tool_call["id"]] = Google Search_tool_async(query)
248
  except json.JSONDecodeError:
249
  continue
250
 
 
244
  query = args.get("query", "").strip()
245
  if query:
246
  # Map tool_call_id to the task
247
+ search_tasks[tool_call["id"]] = google_search_tool_async(query)
248
  except json.JSONDecodeError:
249
  continue
250