Skip to content

Instantly share code, notes, and snippets.

@radixm46
Created June 21, 2023 23:20
Show Gist options
  • Save radixm46/1f85366c7d469bdc1d201269a23f8d12 to your computer and use it in GitHub Desktop.
Save radixm46/1f85366c7d469bdc1d201269a23f8d12 to your computer and use it in GitHub Desktop.
print number of tokens from stdin
#!/usr/bin/env hy
(import sys)
(import tiktoken)
(require hyrule [defmain])
(defmain []
(print
(len (. (tiktoken.encoding_for_model "gpt-4")
(encode (sys.stdin.read))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment