Files
OmniRoute/src/shared/utils/costEstimator.ts
Diego Rodrigues de Sa e Souza 3ec9ca11b1 Release v3.7.6 (#1803)
* feat(api-keys): add rename support in permissions modal

Add an editable key name field at the top of the permissions modal,
allowing users to rename API keys alongside existing permission settings.

The backend already supported name updates via PATCH /api/keys/:id — this
wires the UI to send the name field and refreshes the key list on success.

Changes:
- Add keyName state and text input to PermissionsModal
- Update handleUpdatePermissions to validate and send name in PATCH body
- Add integration test for rename via PATCH (valid, empty, too-long names)
- Update E2E mock to handle PATCH requests

* chore(release): bump version to 3.7.6

* chore(release): v3.7.6 — merge API key rename feature and sync docs

* chore(release): expand contributor credits to 155 PRs across full project history

- Expanded acknowledgment table from 29 to 53 contributors
- Added 100+ previously uncredited PRs from project inception through v3.7.5
- Moved contributor credits section to v3.7.6 (current release)
- Synced llm.txt version to 3.7.6

* fix: resolve security ReDoS in codex and bugs #1797 #1789

* feat(dashboard): implement remaining v3.7.6 dashboard features and fixes

* fix(xiaomi-mimo): update models to V2.5, fix Token Plan validation and default region (#1823)

Integrated into release/v3.7.6

* fix(dashboard): correct loadPresets ReferenceError in CostOverviewTab

* fix(codex): omit compact client metadata (#1822)

Integrated into release/v3.7.6

* feat(chatgpt-web): support thinking_effort (Standard/Extended) for thinking-capable models (#1821)

Integrated into release/v3.7.6

* Fix endpoint visibility, A2A status, and API catalog (#1806)

Integrated into release/v3.7.6

* fix(analytics): use pure SQL aggregations — no history rows loaded (#1802)

Integrated into release/v3.7.6

* fix(stability): resolve codex input validation, enable combo circuit breaker, and fix broken unit tests

* docs(changelog): update for stability bug fixes #1804 #1805

* fix: clear active requests and recover providers (#1824)

Integrated into release/v3.7.6

* feat: inject fallback tool names to prevent upstream 400 errors (#1775)

* feat: auto-restore probe-failed database to prevent data loss (#1810)

* fix: safely cast inputs to strings before calling trim() to avoid crashes on numeric fields in proxy modal (#1825)

* chore(release): v3.7.6 — final stability patches for production

* test: update expected db probe-failure error message for auto-restore feature

* chore(workflow): mandate implementation plan generation in resolve-issues

* docs(changelog): rewrite v3.7.6 with complete commit-accurate entries

* feat(analytics): add cost-based usage insights and activity streaks

Expand usage analytics to report total cost, per-series cost totals,
API key counts, and current activity streaks using pricing-aware token
calculations.

Also make probe-failed database recovery choose the newest backup by
its embedded timestamp instead of filesystem mtime so auto-restore
selects the intended snapshot reliably.

* fix(mitm): enforce transparent interception on port 443 only

Reject non-443 MITM port updates in the settings API and normalize
stored configuration back to the required transparent interception
port.

Lock the dashboard port field to 443, update the validation copy, and
add integration coverage to prevent stale custom ports from being
accepted or surfaced.

* docs(changelog): update for analytics and mitm features

---------

Co-authored-by: Andrew Munsell <andrew@wizardapps.net>
Co-authored-by: Antigravity Assistant <bot@antigravity.local>
Co-authored-by: Gi99lin <74502520+Gi99lin@users.noreply.github.com>
Co-authored-by: Sergey Morozov <tr0st@bk.ru>
Co-authored-by: payne <baboialex95@gmail.com>
Co-authored-by: Randi <55005611+rdself@users.noreply.github.com>
Co-authored-by: Paijo <14921983+oyi77@users.noreply.github.com>
Co-authored-by: ipanghu <bypanghu@163.com>
2026-04-30 14:08:50 -03:00

127 lines
4.2 KiB
TypeScript

/**
* Cost Estimator — Pre-flight cost estimation for LLM requests
*
* Estimates token-based costs before routing to a provider.
* Uses pricing data from the dashboard/database.
*
* @module shared/utils/costEstimator
*/
import { formatCost } from "./formatting";
export { formatCost };
/**
* Default pricing per 1M tokens (fallback when no pricing config exists).
* Values in USD.
*/
const DEFAULT_PRICING = {
"gpt-4o": { input: 2.5, output: 10.0 },
"gpt-4o-mini": { input: 0.15, output: 0.6 },
"gpt-4.1": { input: 2.0, output: 8.0 },
"gpt-4.1-mini": { input: 0.4, output: 1.6 },
"gpt-4.1-nano": { input: 0.1, output: 0.4 },
o3: { input: 2.0, output: 8.0 },
"o4-mini": { input: 1.1, output: 4.4 },
"claude-sonnet-4-5-20250514": { input: 3.0, output: 15.0 },
"claude-3-5-haiku-20241022": { input: 0.8, output: 4.0 },
"gemini-2.5-pro": { input: 1.25, output: 10.0 },
"gemini-2.5-flash": { input: 0.15, output: 0.6 },
};
/**
* Rough token estimation from text.
* Uses ~4 chars per token approximation (GPT-family average).
*
* @param {string} text
* @returns {number} Estimated token count
*/
export function estimateTokens(text) {
if (!text || typeof text !== "string") return 0;
return Math.ceil(text.length / 4);
}
/**
* Estimate input tokens from a chat completion request body.
*
* @param {Object} body - Request body
* @param {Array<{role: string, content: string|Array<{type: string, text?: string}>}>} [body.messages]
* @param {string} [body.system]
* @returns {number} Estimated input token count
*/
export function estimateInputTokens(body) {
if (!body) return 0;
let total = 0;
if (body.system) total += estimateTokens(body.system);
if (Array.isArray(body.messages)) {
for (const msg of body.messages) {
if (typeof msg.content === "string") {
total += estimateTokens(msg.content);
} else if (Array.isArray(msg.content)) {
for (const part of msg.content) {
if (part.type === "text" && typeof part.text === "string") {
total += estimateTokens(part.text);
}
}
}
// Add ~4 tokens overhead per message (role, separators)
total += 4;
}
}
return total;
}
/**
* Estimate the cost of a request given a model.
*
* @param {Object} params
* @param {string} params.model - Model identifier
* @param {number} params.inputTokens - Estimated input tokens
* @param {number} [params.maxOutputTokens=1000] - Max output tokens
* @param {Object} [params.pricingOverrides] - Custom pricing { input, output } per 1M tokens
* @returns {{ inputCost: number, outputCost: number, totalCost: number, model: string, inputTokens: number, outputTokens: number }}
*/
export function estimateCost({ model, inputTokens, maxOutputTokens = 1000, pricingOverrides }) {
// Find matching pricing (exact match or prefix match)
let pricing = pricingOverrides;
if (!pricing) {
const key = Object.keys(DEFAULT_PRICING).find((k) => model === k || model.startsWith(k));
pricing = key ? DEFAULT_PRICING[key] : { input: 1.0, output: 3.0 }; // conservative fallback
}
const inputCost = (inputTokens / 1_000_000) * pricing.input;
const outputCost = (maxOutputTokens / 1_000_000) * pricing.output;
const totalCost = inputCost + outputCost;
return {
model,
inputTokens,
outputTokens: maxOutputTokens,
inputCost: Math.round(inputCost * 1_000_000) / 1_000_000,
outputCost: Math.round(outputCost * 1_000_000) / 1_000_000,
totalCost: Math.round(totalCost * 1_000_000) / 1_000_000,
};
}
/**
* Quick pre-flight estimate: given a request body and model, return estimated cost.
*
* @param {Object} body - Chat completion request body
* @param {string} model - Target model
* @param {Object} [pricingOverrides] - Optional pricing overrides
* @returns {{ inputCost: number, outputCost: number, totalCost: number, formatted: string }}
*/
export function preflightEstimate(body, model, pricingOverrides) {
const inputTokens = estimateInputTokens(body);
const maxOutput = body.max_tokens || body.maxOutputTokens || 1000;
const result = estimateCost({ model, inputTokens, maxOutputTokens: maxOutput, pricingOverrides });
return {
...result,
formatted: formatCost(result.totalCost),
};
}