Fix --verbose example in README: global flag goes before command

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Alpamys 2026-03-05 19:19:07 +05:00
parent df21329a52
commit 120d5a98d2
1 changed files with 3 additions and 3 deletions

View File

@ -354,10 +354,10 @@ Shows: Python version, GPU availability, all dependency versions, and fix sugges
Soup shows friendly error messages by default (2-3 lines with a fix suggestion). For full tracebacks:
```bash
# Any command with --verbose
soup train --config soup.yaml --verbose
# Global flag goes BEFORE the command
soup --verbose train --config soup.yaml
# Global flag works with all commands
# Works with any command
soup --verbose eval --model ./output --benchmarks mmlu
```