fix: correct python slice syntax in token-probe
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
85b47a385f
commit
7b120a1921
|
|
@ -168,7 +168,7 @@ jobs:
|
|||
# Generate filler text (lorem ipsum style)
|
||||
generate_filler() {
|
||||
local size=$1
|
||||
python3 -c "print('The quick brown fox jumps over the lazy dog. ' * ($size // 45 + 1))[:$size]"
|
||||
python3 -c "print(('The quick brown fox jumps over the lazy dog. ' * ($size // 45 + 1))[:$size])"
|
||||
}
|
||||
|
||||
echo "| Size (chars) | ~Tokens | HTTP Status | Result |"
|
||||
|
|
|
|||
Loading…
Reference in New Issue