feat: set default SearXNG URL to empty string

This commit is contained in:
Michael
2026-06-30 22:32:19 +02:00
parent 9ec05cb2fb
commit 6ed91b05db
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ class AgentSettings(BaseSettings):
gitea_repos_root: str = ""
agent_model_id: str = "qwen/qwen3.6-35b-a3b"
agent_max_retries: int = 2
searxng_url: str = "https://searxng.meeks.freeddns.org"
searxng_url: str = ""
def get_settings() -> AgentSettings: