mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-09 21:29:11 +00:00
Ignore typing of the result dict for online, web page scrape
This commit is contained in:
@@ -191,7 +191,7 @@ async def execute_information_collection(
|
|||||||
if isinstance(result, dict) and ChatEvent.STATUS in result:
|
if isinstance(result, dict) and ChatEvent.STATUS in result:
|
||||||
yield result[ChatEvent.STATUS]
|
yield result[ChatEvent.STATUS]
|
||||||
else:
|
else:
|
||||||
online_results = result
|
online_results: Dict[str, Dict] = result # type: ignore
|
||||||
this_iteration.onlineContext = online_results
|
this_iteration.onlineContext = online_results
|
||||||
|
|
||||||
elif this_iteration.data_source == ConversationCommand.Webpage:
|
elif this_iteration.data_source == ConversationCommand.Webpage:
|
||||||
@@ -208,7 +208,7 @@ async def execute_information_collection(
|
|||||||
if isinstance(result, dict) and ChatEvent.STATUS in result:
|
if isinstance(result, dict) and ChatEvent.STATUS in result:
|
||||||
yield result[ChatEvent.STATUS]
|
yield result[ChatEvent.STATUS]
|
||||||
else:
|
else:
|
||||||
direct_web_pages: Dict[str, Dict] = result
|
direct_web_pages: Dict[str, Dict] = result # type: ignore
|
||||||
|
|
||||||
webpages = []
|
webpages = []
|
||||||
for query in direct_web_pages:
|
for query in direct_web_pages:
|
||||||
|
|||||||
Reference in New Issue
Block a user