Files
xh1-research-fork/xh1-research.conf
T
2026-08-25 19:52:29 +02:00

38 lines
729 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://api.openai.com/v1"
# Environment variable containing your API key.
API_KEY_ENV="OPENAI_API_KEY"
# Model to use.
MODEL="YOUR_MODEL_HERE"
# Retry failed API calls.
MAX_RETRIES=3
# 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