Spaces:
Build error
Build error
File size: 322 Bytes
f316cce | 1 2 3 4 5 6 7 8 9 | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.countGPTToken = countGPTToken;
// Stub implementation for OpenAI utils
function countGPTToken(text) {
// Simple approximation: roughly 4 characters per token
return Math.ceil(text.length / 4);
}
//# sourceMappingURL=openai.js.map |