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:
Alex Verkhovsky 2025-12-03 04:36:33 -07:00
parent 85b47a385f
commit 7b120a1921
1 changed files with 1 additions and 1 deletions

View File

@ -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 |"