fix(llm-cost): update

This commit is contained in:
Gergő Móricz 2025-04-15 19:49:14 -07:00
parent 524b9770cd
commit 5515ca7a52

View File

@ -8,7 +8,7 @@ interface ModelPricing {
input_cost_per_request?: number;
mode: string;
}
const tokenPerCharacter = 4;
const tokenPerCharacter = 0.5;
const baseTokenCost = 300;
export function calculateFinalResultCost(data: any): number {