Easily trim 'messages' arrays for use with GPTs.
Project description
TokenTrim
TokenTrim intelligently trims OpenAI messages
to fit within a model's token limit (shortening a message by removing characters from the middle), making it easy to avoid exceeding the maximum token count.
It's best suited for use directly in OpenAI API calls:
import tokentrim as tt
model = "gpt-4"
response = openai.ChatCompletion.create(
model=model,
messages=tt.trim(messages, model) # Trims old messages to fit under model's max token count
)
TokenTrim's behavior is based on OpenAI's own best practices.
Installation
Use the package manager pip to install TokenTrim:
pip install tokentrim
Usage
The primary function in the TokenTrim library is trim()
. This function receives a list of messages and a model name, and it returns a trimmed list of messages that should be within the model's token limit.
import tokentrim as tt
# Force a system_message to be prepended to your messages list. This will not be trimmed.
system_message = "You are a helpful assistant."
response = openai.ChatCompletion.create(
model=model,
messages=tt.trim(messages, model, system_message=system_message)
)
Parameters
messages
: A list of message objects to be trimmed. Each message is a dictionary with 'role' and 'content'.model
: The OpenAI model being used (e.g., 'gpt-4', 'gpt-4-32k'). This determines the token limit.system_message
(optional): A system message to preserve at the start of the conversation.trim_ratio
(optional): Target ratio of tokens to use after trimming. Default is 0.75, meaning it will trim messages so they use about 75% of the model's token limit.return_response_tokens
(optional): If set to True, the function also returns the number of tokens left available for the response after trimming.
Return Value
By default, trim()
returns the trimmed list of messages. If return_response_tokens
is set to True, it returns a tuple where the first element is the trimmed list of messages, and the second element is the number of tokens left available for the response.
License
This project is licensed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tokentrim-0.1.13.tar.gz
.
File metadata
- Download URL: tokentrim-0.1.13.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.8 Linux/6.2.0-1018-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 379e64bb0bd2d713d9e6a9142946d613249376a9234cfaad838b1b31c4d75d30 |
|
MD5 | 8ab0af0a07b13cf7d7ea993350f34ae5 |
|
BLAKE2b-256 | 1ddbf2c34f8ea2e216967ef3ea10ba276144fb3e0d8820de2517ff537d8e39da |
File details
Details for the file tokentrim-0.1.13-py3-none-any.whl
.
File metadata
- Download URL: tokentrim-0.1.13-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.8 Linux/6.2.0-1018-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83c1b8b7d9db391e521ef9a9e054fa1e9cff56398ace259e0b1342a4d3223953 |
|
MD5 | 4354320ba530cc7ad0a6b38909ab82e0 |
|
BLAKE2b-256 | ecd9888803c9c1613809af7165657a54669af08395ba5df8f3ef40c2f045fb3a |