From 120d5a98d2f043ca0dad2da2392c90febb194866 Mon Sep 17 00:00:00 2001 From: Alpamys Date: Thu, 5 Mar 2026 19:19:07 +0500 Subject: [PATCH] Fix --verbose example in README: global flag goes before command Co-Authored-By: Claude Opus 4.6 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37a200d..8b99fe7 100644 --- a/README.md +++ b/README.md @@ -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 ```