Show the available loaders:
dyana loadersShow help for a specific loader:
dyana help automodelPlan model choices against the current machine before tracing:
dyana fit --use-case coding --top-k 5Emit machine-readable fit recommendations:
dyana fit --use-case general --jsonRestrict the planner to a specific runtime and memory budget:
dyana fit --use-case coding --runtime ollama --max-memory-gb 12 --explain-excludedPlan specifically for Dyana's built-in automodel loader:
dyana fit --use-case coding --runtime automodelCreate a trace file for a loader run:
dyana trace --loader automodel ... --output trace.jsonSave artifacts from the container:
dyana trace --loader pip --package botocore --save /usr/local/bin/jp.py --save-to ./artifactsOverride the default Tracee events with a custom policy:
dyana trace --loader automodel ... --policy examples/network_only_policy.ymlShow a summary of a trace file:
dyana summary --trace-path trace.jsondyana fit is host-side only. It does not start Docker, pull models, or execute artifacts. It is intended as a quick planning step before a real traced run.
Network access is disabled by default for loader containers. Allow it explicitly when needed:
dyana trace ... --allow-networkThe shared input volume is mounted read-only by default. Allow writes explicitly when needed:
dyana trace ... --allow-volume-write