diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2026-06-24 10:45:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-24 10:45:40 +0200 |
| commit | f9f3d089ec78c2b3a165ac8a386c5d2eab3fb8eb (patch) | |
| tree | 4139fd52d85970ce3166aea8cef34e98e88a9543 /searx/enginelib | |
| parent | e3713717f24e77db45ef1b4efceb2dfa99c2ff85 (diff) | |
[fix] engine anaconda - add missing about configuration (#6308)
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/enginelib')
| -rw-r--r-- | searx/enginelib/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/enginelib/__init__.py b/searx/enginelib/__init__.py index 1fdcbe6e2..ed33bffd1 100644 --- a/searx/enginelib/__init__.py +++ b/searx/enginelib/__init__.py @@ -207,6 +207,7 @@ class EngineAbout(msgspec.Struct, kw_only=True): use_official_api: bool = False """SearXNG engine makes use of the official API or not""" + require_api_key: bool = False """API requires a key or not.""" @@ -217,8 +218,7 @@ class EngineAbout(msgspec.Struct, kw_only=True): """Brief description of the engine and where it gets its data from. This value should only be set as long as no description of the data source - is available via a :py:obj:`EngineAbout.wikidata_id`. - """ + is available via a :py:obj:`EngineAbout.wikidata_id`.""" language: str = "" """Deprecated! Migrate your setting from `engine.about.language` to |
