# Basic run
insidellms run config.yaml
# With explicit output directory
insidellms run config.yaml --run-dir ./my_run
# Async with concurrency
insidellms run config.yaml --async--concurrency 10
# Resume interrupted run
insidellms run config.yaml --run-dir ./my_run --resume# Overwrite existing run
insidellms run config.yaml --run-dir ./my_run --overwrite
# Basic harness
insidellms harness harness.yaml
# Filter to specific model
insidellms harness harness.yaml --model-filter gpt-4o
# Async with limited examples
insidellms harness harness.yaml --async--concurrency 10 --max-examples 100
quicktest
Quick single-prompt test.
insidellms quicktest <prompt> [options]
Arguments
Argument
Description
prompt
The prompt to send to the model
Options
Option
Description
Default
--model TYPE
Model type (openai, anthropic, dummy)
dummy
--model-name NAME
Specific model name
Provider default
--probe TYPE
Probe type
logic
--temperature T
Sampling temperature
1.0
--max-tokens N
Max response tokens
Provider default
Examples
# Quick test with dummy model
insidellms quicktest "What is 2 + 2?"--model dummy
# Test with OpenAI
insidellms quicktest "Explain gravity"--model openai --model-name gpt-4o
# With specific parameters
insidellms quicktest "Be creative"--model openai --temperature 1.5
# Validate a run
insidellms validate ./my_run
# Strict validation
insidellms validate ./my_run --strict
schema
Schema utilities.
insidellms schema <subcommand> [options]
Subcommands
Subcommand
Description
list
List available schemas
show <name>
Show schema definition
validate <file>
Validate file against schema
Examples
# List schemas
insidellms schema list
# Show a schema
insidellms schema show result_record
# Validate a file
insidellms schema validate records.jsonl --schema result_record
doctor
Check environment and dependencies.
insidellms doctor [options]
Options
Option
Description
Default
--fix
Attempt to fix issues
false
--verbose
Show detailed information
false
Checks Performed
Python version
Required dependencies
Optional dependencies (nlp, visualisation)
API key environment variables
Write permissions for run root
Examples
# Check environment
insidellms doctor
# Verbose check
insidellms doctor --verbose