"""Package-level constants for searxng-cli scripts. Import in sibling scripts with: from _config import VERSION, USER_AGENT, SCHEMA_VERSION Retry settings and shared HTTP utilities now live in ``common.py`` so that both ``search.py`` and ``fetch.py`` share one consistent implementation. """ VERSION = "2.0.1" SCHEMA_VERSION = "1.0" USER_AGENT = f"searxng-cli/{VERSION}"