Initial commit for OpenRouter provider

This commit is contained in:
Klimentij Bulygin
2025-05-20 17:47:40 +02:00
parent ca2b05b35e
commit 51b0ca54c7
3 changed files with 8 additions and 13 deletions
-3
View File
@@ -1,3 +0,0 @@
SEARXNG_BASE_URL="http://127.0.0.1:8080"
OPENAI_API_KEY='xxxxx'
DEEPSEEK_API_KEY='xxxxx'
+6 -6
View File
@@ -1,14 +1,14 @@
[MAIN] [MAIN]
is_local = True is_local = False
provider_name = ollama provider_name = openai
provider_model = deepseek-r1:14b provider_model = google/gemini-2.5-flash-preview
provider_server_address = 127.0.0.1:11434 provider_server_address = https://openrouter.ai/api/v1
agent_name = Name_of_your_AI agent_name = Kai
recover_last_session = False recover_last_session = False
save_session = False save_session = False
speak = False speak = False
listen = False listen = False
work_dir = /Users/mlg/Documents/workspace_for_agenticseek work_dir = /Users/klim/agenticSeek/workspace
jarvis_personality = False jarvis_personality = False
languages = en languages = en
[BROWSER] [BROWSER]
+2 -4
View File
@@ -1,5 +1,3 @@
version: '3'
services: services:
redis: redis:
container_name: redis container_name: redis
@@ -28,8 +26,8 @@ services:
restart: unless-stopped restart: unless-stopped
ports: ports:
- "8080:8080" - "8080:8080"
volumes: # volumes:
- ./searxng:/etc/searxng:rw # - ./searxng:/etc/searxng:rw
environment: environment:
- SEARXNG_BASE_URL=http://localhost:8080/ - SEARXNG_BASE_URL=http://localhost:8080/
- SEARXNG_SECRET_KEY=$(openssl rand -hex 32) - SEARXNG_SECRET_KEY=$(openssl rand -hex 32)