[meta]# Configuration version (for migrations)config_version=1[oracle]# Glob patterns for files to include in scanninginclude_globs=["src/**/*.rs","src/**/*.py","lib/**/*.rs",]# Glob patterns for files/directories to excludeexclude_globs=["target/","node_modules/","venv/",".git/","*.min.js",]# Path to store/cache model filesmodel_path="~/.arqon/models/"[heal]# Maximum repair attempts before giving up (Constitution XVII.1)max_attempts=2# LLM model identifier for local inferencemodel_id="deepseek-coder-1.3b-instruct"# Enable/disable self-healing featureenabled=true[ship]# Branches allowed for release (Constitution XVIII)require_branches=["main","release/*"]# Version scheme: "semver" or "calver"version_scheme="semver"
# For local OllamaexportARQON_LLM_URL="http://localhost:11434/v1"exportARQON_LLM_MODEL="deepseek-coder:1.3b"# For OpenAIexportARQON_LLM_URL="https://api.openai.com/v1"exportARQON_LLM_MODEL="gpt-4o-mini"exportARQON_LLM_KEY="sk-..."