From bb853a499057aaf3e58d686bcd58e1afcceab570 Mon Sep 17 00:00:00 2001 From: al Date: Wed, 26 Aug 2026 10:36:25 +0000 Subject: [PATCH] Add xh1-research.conf --- xh1-research.conf | 65 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 xh1-research.conf diff --git a/xh1-research.conf b/xh1-research.conf new file mode 100644 index 0000000..88f8226 --- /dev/null +++ b/xh1-research.conf @@ -0,0 +1,65 @@ +# ============================================================ +# XH-1 MULTI-PROVIDER CONFIGURATION +# ============================================================ + +# ------------------------------------------------------------ +# Providers +# ------------------------------------------------------------ + +PROVIDERS="openrouter ollama" + + +# ============================================================ +# OpenRouter +# ============================================================ + +PROVIDER_openrouter_URL="https://openrouter.ai/api/v1" +PROVIDER_openrouter_KEY_ENV="OPENROUTER_API_KEY" + + +# ============================================================ +# Ollama +# ============================================================ + +PROVIDER_ollama_URL="http://127.0.0.1:11434/v1" + +# Ollama does not require an API key. +PROVIDER_ollama_KEY_ENV="" + + +# ============================================================ +# Agent routing +# ============================================================ + +# Powerful cloud model for research. +RESEARCH_PROVIDER="openrouter" +RESEARCH_MODEL="YOUR-OPENROUTER-MODEL" + + +# Local M4 reviewer. +REVIEW_PROVIDER="ollama" +REVIEW_MODEL="gemma4:12b" + + +# Powerful cloud model for revisions. +REVISION_PROVIDER="openrouter" +REVISION_MODEL="YOUR-OPENROUTER-MODEL" + + +# ============================================================ +# Research behavior +# ============================================================ + +MAX_RESEARCH_ROUNDS=3 +MAX_API_RETRIES=3 + +DELAY_SECONDS=5 + +# 0 = unlimited. +MAX_ITERATIONS=0 + +REVIEW_ENABLED=true + +# Set true if you want the harness to automatically commit +# accepted research documents. +AUTO_COMMIT=false \ No newline at end of file