fix(shrink): ASCII-safe help strings (em-dash -> hyphen) (v0.71.29)

This commit is contained in:
Alpamys 2026-07-05 11:31:02 +05:00
parent ab1db62e1c
commit e7a4628414
1 changed files with 2 additions and 2 deletions

View File

@ -252,12 +252,12 @@ def shrink(
None, "--drop-layers", help="Explicit number of contiguous layers to drop."
),
calib: str = typer.Option(
..., "--calib", help="Calibration JSONL (prompts) must stay under cwd."
..., "--calib", help="Calibration JSONL (prompts) - must stay under cwd."
),
heal: Optional[str] = typer.Option(
None,
"--heal",
help="Heal JSONL (chat rows) distill the original into the pruned model.",
help="Heal JSONL (chat rows) - distill the original into the pruned model.",
),
heal_steps: int = typer.Option(
200, "--heal-steps", help="Approx. optimiser steps for the distill heal."