mirror of
https://github.com/allexanderbergmns/xh1-research.git
synced 2026-08-26 16:07:01 +00:00
43 lines
888 B
Plaintext
43 lines
888 B
Plaintext
# ============================================================
|
|
# XH-1 Research Harness
|
|
# ============================================================
|
|
|
|
# Any provider exposing:
|
|
# POST /v1/chat/completions
|
|
#
|
|
# Examples:
|
|
#
|
|
# OpenAI:
|
|
# https://api.openai.com/v1
|
|
#
|
|
# Other OpenAI-compatible providers:
|
|
# https://example.com/v1
|
|
|
|
API_BASE_URL="https://openrouter.ai/api/v1"
|
|
|
|
# Environment variable containing your API key.
|
|
API_KEY_ENV="OPENROUTER_API_KEY"
|
|
|
|
|
|
# Model to use.
|
|
MODEL="minimax/minimax-m3:free"
|
|
RESEARCH_MODEL="minimax/minimax-m3:free"
|
|
REVIEW_MODEL="minimax/minimax-m3:free"
|
|
REVISION_MODEL="minimax/minimax-m3:free"
|
|
|
|
# Retry failed API calls.
|
|
MAX_RETRIES=3
|
|
MAX_RESEARCH_ROUNDS=4
|
|
|
|
# Delay between research tasks.
|
|
DELAY_SECONDS=5
|
|
|
|
# 0 = unlimited.
|
|
MAX_ITERATIONS=0
|
|
|
|
# Have a second agent review the research.
|
|
REVIEW_ENABLED=true
|
|
|
|
# Automatically create commits.
|
|
AUTO_COMMIT=false
|