mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-04 21:29:12 +00:00
Add a comma delimeter between outputted search queries
This commit is contained in:
@@ -358,7 +358,7 @@ async def websocket_endpoint(
|
||||
try:
|
||||
await send_status_update("**Operation**: Searching the web for relevant information...")
|
||||
online_results = await search_online(defiltered_query, meta_log, location)
|
||||
online_searches = "".join([f"{query}" for query in online_results.keys()])
|
||||
online_searches = ", ".join([f"{query}" for query in online_results.keys()])
|
||||
await send_status_update(f"**Online searches**: {online_searches}")
|
||||
except ValueError as e:
|
||||
await send_complete_llm_response(
|
||||
|
||||
Reference in New Issue
Block a user