fix: honcho auth + deepseek LLM config
Some checks failed
Build Hermes agent / build (pull_request) Has been cancelled
Build ollama (gfx906) / build (pull_request) Has been cancelled

This commit is contained in:
2026-05-23 08:34:32 -04:00
parent 352f9a9e78
commit bb53161b50
2 changed files with 18 additions and 16 deletions

View File

@@ -164,14 +164,16 @@ services:
# --- Honcho + OpenConcho combiné: API + Web UI nginx/FastAPI --- # --- Honcho + OpenConcho combiné: API + Web UI nginx/FastAPI ---
honcho-ui: honcho-ui:
build: ./honcho build: ./honcho
container_name: honcho-ui container_name: honcho
restart: unless-stopped restart: unless-stopped
environment: environment:
- DB_CONNECTION_URI=postgresql+psycopg://honcho:honcho_pass@honcho-db:5432/honcho - DB_CONNECTION_URI=postgresql+psycopg://honcho:honcho_pass@honcho-db:5432/honcho
- CACHE_URL=redis://honcho-redis:6379/0 - CACHE_URL=redis://honcho-redis:6379/0
- CACHE_ENABLED=true - CACHE_ENABLED=true
- EMBEDDING_VECTOR_DIMENSIONS=1536 - EMBEDDING_VECTOR_DIMENSIONS=1536
- VECTOR_STORE_DIMENSIONS=1536 - AUTH_USE_AUTH=true
- AUTH_JWT_SECRET=${AUTH_JWT_SECRET}
- OPENAI_API_KEY=${OPENAI_API_KEY}
volumes: volumes:
- /mnt/HoardingCow_docker_data/Honcho/data:/app/data - /mnt/HoardingCow_docker_data/Honcho/data:/app/data
networks: networks:

View File

@@ -48,8 +48,8 @@ FLUSH_ENABLED = true
[deriver.model_config] [deriver.model_config]
transport = "openai" transport = "openai"
model = "hermes-3" model = "deepseek-v4-flash"
base_url = "http://ollama:11434/v1" base_url = "https://opencode.ai/zen/go/v1"
# --- Dialectic --- # --- Dialectic ---
[dialectic] [dialectic]
@@ -61,36 +61,36 @@ MAX_TOOL_ITERATIONS = 1
MAX_OUTPUT_TOKENS = 512 MAX_OUTPUT_TOKENS = 512
[dialectic.levels.minimal.model_config] [dialectic.levels.minimal.model_config]
transport = "openai" transport = "openai"
model = "hermes-3" model = "deepseek-v4-flash"
base_url = "http://ollama:11434/v1" base_url = "https://opencode.ai/zen/go/v1"
[dialectic.levels.low] [dialectic.levels.low]
MAX_TOOL_ITERATIONS = 3 MAX_TOOL_ITERATIONS = 3
[dialectic.levels.low.model_config] [dialectic.levels.low.model_config]
transport = "openai" transport = "openai"
model = "hermes-3" model = "deepseek-v4-flash"
base_url = "http://ollama:11434/v1" base_url = "https://opencode.ai/zen/go/v1"
[dialectic.levels.medium] [dialectic.levels.medium]
MAX_TOOL_ITERATIONS = 2 MAX_TOOL_ITERATIONS = 2
[dialectic.levels.medium.model_config] [dialectic.levels.medium.model_config]
transport = "openai" transport = "openai"
model = "hermes-3" model = "deepseek-v4-flash"
base_url = "http://ollama:11434/v1" base_url = "https://opencode.ai/zen/go/v1"
[dialectic.levels.high] [dialectic.levels.high]
MAX_TOOL_ITERATIONS = 4 MAX_TOOL_ITERATIONS = 4
[dialectic.levels.high.model_config] [dialectic.levels.high.model_config]
transport = "openai" transport = "openai"
model = "hermes-3" model = "deepseek-v4-flash"
base_url = "http://ollama:11434/v1" base_url = "https://opencode.ai/zen/go/v1"
[dialectic.levels.max] [dialectic.levels.max]
MAX_TOOL_ITERATIONS = 10 MAX_TOOL_ITERATIONS = 10
[dialectic.levels.max.model_config] [dialectic.levels.max.model_config]
transport = "openai" transport = "openai"
model = "hermes-3" model = "deepseek-v4-flash"
base_url = "http://ollama:11434/v1" base_url = "https://opencode.ai/zen/go/v1"
# --- Summary --- # --- Summary ---
[summary] [summary]
@@ -100,8 +100,8 @@ MESSAGES_PER_LONG_SUMMARY = 60
[summary.model_config] [summary.model_config]
transport = "openai" transport = "openai"
model = "hermes-3" model = "deepseek-v4-flash"
base_url = "http://ollama:11434/v1" base_url = "https://opencode.ai/zen/go/v1"
# --- Dream --- # --- Dream ---
[dream] [dream]