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]
is_local = True
provider_name = ollama
provider_model = deepseek-r1:14b
provider_server_address = 127.0.0.1:11434
agent_name = Name_of_your_AI
is_local = False
provider_name = openai
provider_model = google/gemini-2.5-flash-preview
provider_server_address = https://openrouter.ai/api/v1
agent_name = Kai
recover_last_session = False
save_session = False
speak = False
listen = False
work_dir = /Users/mlg/Documents/workspace_for_agenticseek
work_dir = /Users/klim/agenticSeek/workspace
jarvis_personality = False
languages = en
[BROWSER]
+2 -4
View File
@@ -1,5 +1,3 @@
version: '3'
services:
redis:
container_name: redis
@@ -28,8 +26,8 @@ services:
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- ./searxng:/etc/searxng:rw
# volumes:
# - ./searxng:/etc/searxng:rw
environment:
- SEARXNG_BASE_URL=http://localhost:8080/
- SEARXNG_SECRET_KEY=$(openssl rand -hex 32)