File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -63,8 +63,9 @@ pip install tacho
6363# Compare models with default settings (5 runs, 500 token limit)
6464tacho gpt-4.1-nano gemini/gemini-2.0-flash
6565
66- # Custom settings
67- tacho gpt-4.1-nano gemini/gemini-2.0-flash --runs 3 --tokens 1000
66+ # Custom settings (options must come before model names)
67+ tacho --runs 3 --tokens 1000 gpt-4.1-nano gemini/gemini-2.0-flash
68+ tacho -r 3 -t 1000 gpt-4.1-nano gemini/gemini-2.0-flash
6869```
6970
7071### Command options
@@ -73,6 +74,10 @@ tacho gpt-4.1-nano gemini/gemini-2.0-flash --runs 3 --tokens 1000
7374- ` --tokens, -t ` : Maximum tokens to generate per response (default: 500)
7475- ` --prompt, -p ` : Custom prompt for benchmarking
7576
77+ ** Note:** When using the shorthand syntax (without the ` bench ` subcommand), options must be placed before model names. For example:
78+ - ✅ ` tacho -t 2000 gpt-4.1-mini `
79+ - ❌ ` tacho gpt-4.1-mini -t 2000 `
80+
7681## Output
7782
7883Tacho displays a clean comparison table showing:
You can’t perform that action at this time.
0 commit comments