mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-14 11:12:17 +03:00
* feat(providers): add Conol web support
* fix(conol): preserve sessions and image turns
* fix(conol): pin session model and effort via /model endpoint
Conol ignores agentModel/agentEffort on POST /api/sessions, so every
session silently ran on the downgraded account default (the create
response reports modelDowngraded: true / effectiveModel).
Sessions are now created empty and configured out-of-band against
POST /api/sessions/{id}/model before the first turn is submitted, in the
order the web client uses: modelPreset, then agentModel, then agentEffort.
The ordering is load-bearing because the model call resets agentEffort to
null server-side.
Effort now defaults to xhigh when the caller does not pin one via the
-<effort> model suffix, and is clamped onto the ladder each model actually
advertises, so xhigh degrades to high on claude-sonnet-5 and is skipped
entirely for models without an effort ladder such as openrouter/fusion.
Model and effort are also dropped from the session binding key so switching
models re-pins the existing session instead of stranding it and losing the
conversation history. Re-pinning only happens on an actual change, so
steady-state follow-ups cost no extra round trips.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
112 lines
3.3 KiB
TypeScript
112 lines
3.3 KiB
TypeScript
import { normalizeConolCookie } from "./conolAuth.ts";
|
|
|
|
interface UsageQuota {
|
|
used: number;
|
|
total: number;
|
|
remaining: number;
|
|
remainingPercentage: number;
|
|
resetAt: null;
|
|
unlimited: boolean;
|
|
}
|
|
|
|
interface ConolBalance {
|
|
dailyCredits?: unknown;
|
|
subscriptionCredits?: unknown;
|
|
subscriptionAmount?: unknown;
|
|
extraCredits?: unknown;
|
|
total?: unknown;
|
|
}
|
|
|
|
interface ConolUsageResult {
|
|
plan: string;
|
|
quotas: Record<"credits" | "daily" | "subscription" | "extra", UsageQuota>;
|
|
message: string | null;
|
|
}
|
|
|
|
function numberValue(value: unknown): number {
|
|
const parsed = typeof value === "number" ? value : Number(value);
|
|
return Number.isFinite(parsed) && parsed > 0 ? parsed : 0;
|
|
}
|
|
|
|
function remainingQuota(remaining: number, total = remaining): UsageQuota {
|
|
const boundedTotal = Math.max(total, remaining);
|
|
const used = Math.max(0, boundedTotal - remaining);
|
|
return {
|
|
used,
|
|
total: boundedTotal,
|
|
remaining,
|
|
remainingPercentage:
|
|
boundedTotal > 0 ? Math.round((remaining / boundedTotal) * 1000) / 10 : 0,
|
|
resetAt: null,
|
|
unlimited: false,
|
|
};
|
|
}
|
|
|
|
export function buildConolUsageResult(balance: ConolBalance): ConolUsageResult {
|
|
const daily = numberValue(balance.dailyCredits);
|
|
const subscription = numberValue(balance.subscriptionCredits);
|
|
const subscriptionAmount = numberValue(balance.subscriptionAmount);
|
|
const extra = numberValue(balance.extraCredits);
|
|
const aggregate = numberValue(balance.total) || daily + subscription + extra;
|
|
|
|
return {
|
|
plan: subscriptionAmount > 0 ? "Subscription" : "Free",
|
|
quotas: {
|
|
credits: remainingQuota(aggregate),
|
|
daily: remainingQuota(daily),
|
|
subscription: remainingQuota(subscription, subscriptionAmount || subscription),
|
|
extra: remainingQuota(extra),
|
|
},
|
|
message: null,
|
|
};
|
|
}
|
|
|
|
function readString(value: unknown): string {
|
|
return typeof value === "string" ? value.trim() : "";
|
|
}
|
|
|
|
function readProviderValue(data: unknown, keys: readonly string[]): string {
|
|
if (!data || typeof data !== "object" || Array.isArray(data)) return "";
|
|
const record = data as Record<string, unknown>;
|
|
for (const key of keys) {
|
|
const value = readString(record[key]);
|
|
if (value) return value;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
export async function getConolUsage(
|
|
apiKey: unknown,
|
|
providerSpecificData?: unknown
|
|
): Promise<ConolUsageResult | { message: string }> {
|
|
const raw =
|
|
readProviderValue(providerSpecificData, [
|
|
"cookie",
|
|
"__Secure-better-auth.session_token",
|
|
"sessionToken",
|
|
]) || readString(apiKey);
|
|
const cookie = normalizeConolCookie(raw);
|
|
if (!cookie) return { message: "Missing Conol session cookie" };
|
|
|
|
try {
|
|
const response = await fetch("https://conol.ai/api/billing/balance", {
|
|
method: "GET",
|
|
headers: {
|
|
accept: "application/json",
|
|
cookie,
|
|
referer: "https://conol.ai/home",
|
|
},
|
|
signal: AbortSignal.timeout(15_000),
|
|
});
|
|
if (response.status === 401 || response.status === 403) {
|
|
return { message: "Conol session expired or is invalid" };
|
|
}
|
|
if (!response.ok) {
|
|
return { message: `Conol balance request failed (HTTP ${response.status})` };
|
|
}
|
|
return buildConolUsageResult((await response.json()) as ConolBalance);
|
|
} catch {
|
|
return { message: "Conol balance request failed" };
|
|
}
|
|
}
|