275"description": "Run feature steering AND open the steer panel with the result injected. Use feature_idx or a saved LAT vector file. Pass eval=true to score baseline vs steered on a probe suite (default: deception probes).",
276"parameters": {
277"type": "object",
278"properties": {
279"prompt": {"type": "string", "description": "Optional single-prompt demo. Omit with eval=true to run the probe suite only."},
280"feature_idx": {"type": "number", "description": "SAE feature index (omit when using vector)."},
281"vector": {"type": "string", "description": "Path to a saved LAT JSON from steer --save."},
282"feature_label": {"type": "string", "description": "Optional — auto-resolved from causal labeling if omitted"},
283"strength": {"type": "number"},
284"layer": {"type": "number"},
285"max_new_tokens": {"type": "number"},
286"eval": {"type": "boolean", "description": "If true, score the same probe set under baseline vs steered and report pass rates."},
287"prompts": {"type": "string", "description": "Probe file (json/jsonl) or JSON array."},
328"description": "Load the UMAP projection and open the UMAP Explorer panel. CLI equivalent: add --umap to a feature command (e.g. aquin feature locate --umap).",
479"description": "Simulate the user's existing training setup. Pass paths to their dataset and pipeline (script or config) — no Aquin-specific formats.",
480"parameters": {
481"type": "object",
482"properties": {
483"topic": {"type": "string", "description": "Quick probe when no dataset path yet."},
484"dataset": {"type": "string", "description": "Path to the user's dataset file."},
485"algo": {"type": "string", "description": "Path to the user's training script or config."},
486"count": {"type": "number"},
487 **{k: v for k, v in _LORA_PARAMS.items() if k != "rows"},
524"description": "Compare two saved simulation runs side-by-side, including attack-surface metrics (consistency, suppression, robustness) from model diff.",
525"parameters": {
526"type": "object",
527"properties": {
528"run_id_a": {"type": "string", "description": "First simulation run ID (before)."},
529"run_id_b": {"type": "string", "description": "Second simulation run ID (after)."},
530"run_id_before": {"type": "string", "description": "Alias for run_id_a."},
531"run_id_after": {"type": "string", "description": "Alias for run_id_b."},
573"description": "Run prompts through the model and score each response against a reference answer (keyword overlap). Prefer built-in eval tools over inventing a code runner.",