insidellms run config.yaml --async--concurrency 10
Reduce Costs
# Limit examples and enable cache middlewaremax_examples:50pipeline:middlewares:-type:cacheargs:cache_size:1000
Run Offline
# Use DummyModel for testingmodels:-type:dummy
Debug Failures
# Check environment
insidellms doctor
# Validate artifacts
insidellms validate ./my_run
# Verbose output
insidellms run config.yaml --verbose
Common Patterns
Development Workflow
# 1. Generate and tune a local config
insidellms init dev.yaml --model dummy
# 2. Run a deterministic harness candidate
insidellms harness dev.yaml --run-dir .tmp/runs/dev --overwrite# 3. Full run
insidellms run config.yaml --run-dir .tmp/runs/full --overwrite
CI Workflow
# 1. Run candidate
insidellms harness config.yaml --run-dir ./candidate
# 2. Diff against baseline
insidellms diff ./baseline ./candidate --fail-on-changes