Spaces:
Runtime error
Runtime error
File size: 5,778 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | import { getProviderAlias } from "@/shared/constants/providers";
import { OMNIROUTE_RESPONSE_HEADERS } from "@/shared/constants/headers";
import { APP_CONFIG } from "@/shared/constants/appConfig";
type UsageLike = Record<string, unknown> | null | undefined;
function toFiniteNumber(value: unknown): number {
if (typeof value === "number" && Number.isFinite(value)) return value;
if (typeof value === "string" && value.trim().length > 0) {
const parsed = Number(value);
return Number.isFinite(parsed) ? parsed : 0;
}
return 0;
}
function toNonNegativeInteger(value: unknown): number {
return Math.max(0, Math.round(toFiniteNumber(value)));
}
export function getOmniRouteTokenCounts(usage: UsageLike): { input: number; output: number } {
if (!usage || typeof usage !== "object") {
return { input: 0, output: 0 };
}
return {
input: toNonNegativeInteger(
usage.input ??
usage.prompt_tokens ??
usage.input_tokens ??
usage.promptTokens ??
usage.inputTokens
),
output: toNonNegativeInteger(
usage.output ??
usage.completion_tokens ??
usage.output_tokens ??
usage.completionTokens ??
usage.outputTokens
),
};
}
export function formatOmniRouteCost(costUsd: unknown): string {
const normalized = toFiniteNumber(costUsd);
return normalized > 0 ? normalized.toFixed(10) : "0.0000000000";
}
export function buildOmniRouteResponseMetaHeaders({
cacheHit = false,
costUsd = 0,
costSavedUsd = undefined,
fallbackAttempts = 0,
latencyMs = 0,
model = null,
provider = null,
requestId = null,
usage = null,
}: {
cacheHit?: boolean;
costUsd?: unknown;
/**
* Cost the cache AVOIDED. A semantic-cache HIT serves at ≈0 incremental cost
* (`costUsd: 0`) but saved the original call's cost — surface it here so billing
* consumers don't charge for hits while analytics can still see what was saved.
* Emitted as `X-OmniRoute-Cost-Saved` only when provided (omitted on normal
* responses); pass `0` to explicitly mark a free-model HIT that saved nothing.
*/
costSavedUsd?: unknown;
fallbackAttempts?: number;
latencyMs?: unknown;
model?: string | null;
provider?: string | null;
requestId?: string | null;
usage?: UsageLike;
}): Record<string, string> {
const tokens = getOmniRouteTokenCounts(usage);
const headers: Record<string, string> = {
[OMNIROUTE_RESPONSE_HEADERS.cacheHit]: String(cacheHit),
[OMNIROUTE_RESPONSE_HEADERS.latencyMs]: String(toNonNegativeInteger(latencyMs)),
[OMNIROUTE_RESPONSE_HEADERS.responseCost]: formatOmniRouteCost(costUsd),
[OMNIROUTE_RESPONSE_HEADERS.tokensIn]: String(tokens.input),
[OMNIROUTE_RESPONSE_HEADERS.tokensOut]: String(tokens.output),
[OMNIROUTE_RESPONSE_HEADERS.version]: APP_CONFIG.version,
};
if (typeof model === "string" && model.trim().length > 0) {
headers[OMNIROUTE_RESPONSE_HEADERS.model] = model;
}
if (typeof requestId === "string" && requestId.trim().length > 0) {
headers[OMNIROUTE_RESPONSE_HEADERS.requestId] = requestId;
}
if (typeof provider === "string" && provider.trim().length > 0) {
headers[OMNIROUTE_RESPONSE_HEADERS.provider] = getProviderAlias(provider);
}
// Cache-saved cost: emitted only when the caller passes a value (cache HITs), so
// non-cache responses keep their existing header shape. `0` is a valid saved cost.
if (costSavedUsd != null) {
headers[OMNIROUTE_RESPONSE_HEADERS.costSaved] = formatOmniRouteCost(costSavedUsd);
}
const attempts = toNonNegativeInteger(fallbackAttempts);
if (attempts > 0) {
headers[OMNIROUTE_RESPONSE_HEADERS.fallbackAttempts] = String(attempts);
}
return headers;
}
export function buildOmniRouteSseMetadataComment(
options: Parameters<typeof buildOmniRouteResponseMetaHeaders>[0]
): string {
const headers = buildOmniRouteResponseMetaHeaders(options);
const lines = Object.entries(headers)
.filter(([, value]) => typeof value === "string" && value.trim().length > 0)
.map(([name, value]) => `: ${name.toLowerCase()}=${value}`);
return lines.length > 0 ? `${lines.join("\n")}\n` : "";
}
/**
* Single choke-point for attaching the X-OmniRoute-* response meta headers.
* Mutates `headers` in place (accepts a Headers instance OR a plain Record).
* Use at EVERY non-streaming success return so no route forgets the telemetry.
*/
export function attachOmniRouteMetaHeaders(
headers: Headers | Record<string, string>,
meta: Parameters<typeof buildOmniRouteResponseMetaHeaders>[0]
): void {
const built = buildOmniRouteResponseMetaHeaders(meta);
if (headers instanceof Headers) {
for (const [name, value] of Object.entries(built)) headers.set(name, value);
} else {
Object.assign(headers, built);
}
}
/**
* Attach the X-OmniRoute-* meta headers onto an already-built Response, ADDING
* (never replacing) headers so the original Content-Type / body stay intact.
* Tries to mutate in place; if the Response headers are immutable, clones the
* Response carrying over body + status + headers (mirrors
* `chatHelpers.ts::withSessionHeader`). Use for opaque handler-built Responses
* (audio streams, passthrough proxies) where the body cannot be re-serialized.
*/
export function attachOmniRouteMetaToResponse(
response: Response,
meta: Parameters<typeof buildOmniRouteResponseMetaHeaders>[0]
): Response {
if (!response) return response;
try {
attachOmniRouteMetaHeaders(response.headers, meta);
return response;
} catch {
const cloned = new Response(response.body, {
status: response.status,
statusText: response.statusText,
headers: response.headers,
});
attachOmniRouteMetaHeaders(cloned.headers, meta);
return cloned;
}
}
|