mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-09 05:39:12 +00:00
Make organic web search result text snippet field optional
All web search providers, like Jina/Searxng?, do not return a text snippet. Making snippet optional allows processing search results by these web search providers, without hitting validation errors.
This commit is contained in:
@@ -75,7 +75,7 @@ class KnowledgeGraph(PydanticBaseModel):
|
|||||||
|
|
||||||
|
|
||||||
class OrganicContext(PydanticBaseModel):
|
class OrganicContext(PydanticBaseModel):
|
||||||
snippet: str
|
snippet: Optional[str] = None
|
||||||
title: str
|
title: str
|
||||||
link: str
|
link: str
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user