// Stub implementation for OpenAI utils export function countGPTToken(text: string): number { // Simple approximation: roughly 4 characters per token return Math.ceil(text.length / 4); }