Coder Social home page Coder Social logo

tt's Introduction

tt.py

Simple CLI wrapper for the Open AI tokenizer tiktoken.

Usage

Either pipe input into tt.py or pass it a file as the first argument to tokenize the text (by default using the cl100k_base encoding).

# tokenize the text 'Hello, World!'
echo "Hello, World!" | tt.py > hello-world-tokens.txt
# count the number of tokens
wc -w hello-world-tokens.txt
# decode the tokens
< hello-world-tokens.txt tt.py --decode > hello-world.txt

The main motivation for this script is to be able to quickly count tokens of a given text.

For example, in a Vim buffer

:w !tt.py | wc -w

counts the number of tokens in the current buffer. Which handy if you want to understand if the input is appropriate for a given model/context window.

For example, this README.md contains at the time of writing of 238 tokens. So it fits into a small context window without any problem.

Requirements

Requires tiktoken to be installed. For example using pip install tiktoken.

tt's People

Contributors

cervedin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.