Removing some unneeded comments

This commit is contained in:
Glenn R. Martin 2025-06-03 21:19:28 -04:00
parent 0df7ac0bad
commit 8443330abd

View file

@ -40,11 +40,7 @@ class CountAITokens extends Operation {
*/
async run(input, args) {
if (!input) return "";
// const [model] = args;
// // Use the mapping, fallback to cl100k_base if not found
// const encoding = MODEL_TO_ENCODING[model] || cl100k_base;
// const tokenCount = encoding.;
// return tokenCount.toString();
const [model] = args;
let countTokensFn;
if (MODEL_TO_MODULES[model]) {