-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtokenCounter.js
31 lines (29 loc) · 1.17 KB
/
tokenCounter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* Token counter module.
* Provides a function to count tokens based on the model and text input.
*/
/**
* Counts the number of tokens in a given text for a specified model.
* @param {string} modelName - The name of the model to use for token counting.
* @param {string} text - The text to count tokens for.
* @returns {number} The number of tokens in the text.
*/
function countTokens(modelName, text) {
//Use exact model name for Mistral.
if (modelName === 'mistral-tiny' || modelName === 'mistral-small' || modelName === 'mistral-medium' || modelName === 'mistral-large') {
return Math.ceil(text.length / 4);
}
try {
// Get the correct encoding for the model
const { encoding_for_model } = require('@dqbd/tiktoken');
const encoding = encoding_for_model(modelName);
const tokens = encoding.encode(text);
encoding.free();
return tokens.length;
} catch (error) {
console.error(`Error counting tokens for model ${modelName}:`, error);
// Handle the error, perhaps by returning a default or estimated value
return 0; // or throw error;
}
}
module.exports = { countTokens };