mirror of
https://github.com/allexanderbergmns/xh1-research.git
synced 2026-08-26 17:47:02 +00:00
A Harnass
This commit is contained in:
Executable
+1017
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,37 @@
|
|||||||
|
# ============================================================
|
||||||
|
# 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
|
||||||
Reference in New Issue
Block a user