1.0.2 • Published 9 months ago

gpt-3-token-count v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

GPT-3 Token Count

A TypeScript package for counting the number of tokens in a given text using the GPT-3 language model.

It's not perfect but it's a pretty close estimate.

Installation

You can install the gpt-3-token-count package via npm:

npm install gpt-3-token-count

Usage

import { count } from "gpt-3-token-count";

const text = "This is a sample text.";
const tokenCount = count(text);

console.log(`Token count: ${tokenCount}`);

The count function accepts a string as input and returns the number of tokens present in the text.

1.0.2

9 months ago

1.0.1

10 months ago

1.0.0

10 months ago