TEST: Completed Review #2 | research/05-memory/memory-ordering.md

This commit is contained in:
allexanderbergmns
2026-08-26 14:47:26 +02:00
parent 7f0c470251
commit d19f5a2c1b
49 changed files with 9926 additions and 26 deletions
+48 -24
View File
@@ -1,42 +1,66 @@
# ============================================================
# XH-1 Research Harness
# XH-1 MULTI-PROVIDER CONFIGURATION
# ============================================================
# Any provider exposing:
# POST /v1/chat/completions
#
# Examples:
#
# OpenAI:
# https://api.openai.com/v1
#
# Other OpenAI-compatible providers:
# https://example.com/v1
# ------------------------------------------------------------
# Providers
# ------------------------------------------------------------
API_BASE_URL="https://openrouter.ai/api/v1"
# Environment variable containing your API key.
API_KEY_ENV="OPENROUTER_API_KEY"
PROVIDERS="openrouter ollama"
# Model to use.
MODEL="minimax/minimax-m3:free"
# ============================================================
# 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=""
OLLAMA_CONTEXT=16384
# ============================================================
# Agent routing
# ============================================================
# Powerful cloud model for research.
RESEARCH_PROVIDER="openrouter"
RESEARCH_MODEL="minimax/minimax-m3:free"
REVIEW_MODEL="minimax/minimax-m3:free"
# Local M4 reviewer.
REVIEW_PROVIDER="ollama"
REVIEW_MODEL="gemma4:12b"
# Powerful cloud model for revisions.
REVISION_PROVIDER="openrouter"
REVISION_MODEL="minimax/minimax-m3:free"
# Retry failed API calls.
MAX_RETRIES=3
MAX_RESEARCH_ROUNDS=4
# Delay between research tasks.
# ============================================================
# Research behavior
# ============================================================
MAX_RESEARCH_ROUNDS=3
MAX_API_RETRIES=3
DELAY_SECONDS=5
# 0 = unlimited.
MAX_ITERATIONS=0
# Have a second agent review the research.
REVIEW_ENABLED=true
# Automatically create commits.
# Set true if you want the harness to automatically commit
# accepted research documents.
AUTO_COMMIT=false