codesnap-analyzer
Version:
Create comprehensive snapshots of your codebase with token counting for LLMs
10 lines (9 loc) • 328 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.PRICING = void 0;
exports.PRICING = {
gpt35: 0.0015, // GPT-3.5 per 1K tokens
gpt4: 0.03, // GPT-4 per 1K tokens
claude: 0.015, // Claude per 1K tokens (approximation)
llama2: 0.002, // LLaMA 2 per 1K tokens (approximation)
};
;