mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 13:18:18 +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):
|
||||
snippet: str
|
||||
snippet: Optional[str] = None
|
||||
title: str
|
||||
link: str
|
||||
|
||||
|
||||
Reference in New Issue
Block a user