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