Skip to content

Instantly share code, notes, and snippets.

@dyigitpolat
Created July 7, 2025 17:56
Show Gist options
  • Save dyigitpolat/20f7d1c1930301f20f72f306a83447b6 to your computer and use it in GitHub Desktop.
Save dyigitpolat/20f7d1c1930301f20f72f306a83447b6 to your computer and use it in GitHub Desktop.
rough token count
def estimate_token_count(text):
return int(len(text.split()) * 1.33 + len(text) * 0.25) * 0.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment