File size: 11,655 Bytes
88c4c60 | 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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | /**
* Kiro model catalog fetcher.
*
* Calls AWS CodeWhisperer's `ListAvailableModels` endpoint to get the live
* catalog for an authenticated Kiro account, then expands each upstream model
* into 9router-shaped variants:
*
* {upstream} - base model
* {upstream}-thinking - same model, thinking on at request time
* {upstream}-agentic - same model, chunked-write prompt prepended
* {upstream}-thinking-agentic - both
*
* The `-thinking` and `-agentic` suffixes do not exist on the Kiro upstream
* API. They are 9router fictions and the `openai-to-kiro` translator strips
* them before the request leaves this process.
*
* The runtime UA is built to match what Kiro IDE itself sends, because the
* upstream rejects requests with malformed `User-Agent` headers (returns 400
* "format of value 'os/win/10 lang/js ...' is invalid").
*/
import { v4 as uuidv4 } from "uuid";
import { createHash } from "crypto";
import { refreshKiroToken } from "./tokenRefresh.js";
const KIRO_RUNTIME_SDK_VERSION = "1.0.0";
const KIRO_AGENT_OS = "windows";
const KIRO_AGENT_OS_VERSION = "10.0.26200";
const KIRO_NODE_VERSION = "22.21.1";
const KIRO_VERSION = "0.10.32";
const DEFAULT_REGION = "us-east-1";
const FETCH_TIMEOUT_MS = 30_000;
const CACHE_TTL_MS = 5 * 60 * 1000; // 5 minutes per credential
/** @type {Map<string, { expiresAt: number, models: any[] }>} */
const catalogCache = new Map();
/**
* Strip the `-agentic` and/or `-thinking` suffixes from a synthetic id, if
* any. Used only for display naming when a Kiro upstream id happens to look
* synthetic (defensive).
*/
function stripSyntheticSuffixes(id) {
let out = id;
if (out.endsWith("-agentic")) out = out.slice(0, -"-agentic".length);
if (out.endsWith("-thinking")) out = out.slice(0, -"-thinking".length);
return out;
}
/**
* Extract region from a profileArn like
* arn:aws:codewhisperer:us-east-1:123456789012:profile/ABC
*/
function regionFromProfileArn(profileArn) {
if (!profileArn || typeof profileArn !== "string") return DEFAULT_REGION;
const parts = profileArn.split(":");
if (parts.length >= 4 && parts[3]) return parts[3];
return DEFAULT_REGION;
}
/**
* Build the per-account fingerprint headers Kiro upstream validates.
* Keyed off whatever stable identifier we have for this credential, so the
* same account always presents the same machineId.
*/
function buildKiroFingerprintHeaders(credentials) {
const seed =
credentials?.providerSpecificData?.clientId
|| credentials?.refreshToken
|| credentials?.providerSpecificData?.profileArn
|| credentials?.accessToken
|| "kiro-anonymous";
const machineId = createHash("sha256").update(String(seed)).digest("hex");
const userAgent =
`aws-sdk-js/${KIRO_RUNTIME_SDK_VERSION} ua/2.1 ` +
`os/${KIRO_AGENT_OS}#${KIRO_AGENT_OS_VERSION} ` +
`lang/js md/nodejs#${KIRO_NODE_VERSION} ` +
`api/codewhispererruntime#${KIRO_RUNTIME_SDK_VERSION} m/N,E ` +
`KiroIDE-${KIRO_VERSION}-${machineId}`;
const amzUserAgent = `aws-sdk-js/${KIRO_RUNTIME_SDK_VERSION} KiroIDE-${KIRO_VERSION}-${machineId}`;
return {
"User-Agent": userAgent,
"x-amz-user-agent": amzUserAgent,
"x-amzn-kiro-agent-mode": "vibe",
"x-amzn-codewhisperer-optout": "true",
"amz-sdk-request": "attempt=1; max=1",
"amz-sdk-invocation-id": uuidv4(),
"Accept": "application/json"
};
}
/**
* Build the synthetic 9router variant set for a single upstream Kiro model.
*
* Returns objects shaped for `PROVIDER_MODELS` (`{ id, name }`) so they can
* be slotted directly into the existing model registry.
*
* The `auto` model is special: Kiro picks the underlying model server-side,
* so the chunked-write `-agentic` prompt is not meaningful (the prompt
* targets coding-agent file writes). Match CLIProxyAPIPlus and skip
* `-agentic` / `-thinking-agentic` for `auto`.
*/
function buildVariants(upstream, displayName) {
const safeUpstream = stripSyntheticSuffixes(upstream);
const display = displayName || `Kiro ${safeUpstream}`;
const isAuto = safeUpstream === "auto";
const variants = [
{
id: safeUpstream,
name: display,
capabilities: { thinking: false, agentic: false }
},
{
id: `${safeUpstream}-thinking`,
name: `${display} (Thinking)`,
capabilities: { thinking: true, agentic: false }
}
];
if (!isAuto) {
variants.push({
id: `${safeUpstream}-agentic`,
name: `${display} (Agentic)`,
capabilities: { thinking: false, agentic: true }
});
variants.push({
id: `${safeUpstream}-thinking-agentic`,
name: `${display} (Thinking + Agentic)`,
capabilities: { thinking: true, agentic: true }
});
}
return variants;
}
/**
* Format the human-friendly display name for a Kiro model, including the
* rate multiplier when it is something other than 1.0x.
*/
function formatDisplayName(modelName, modelId, rateMultiplier) {
const base = (modelName || modelId || "Kiro").trim();
const rate = Number(rateMultiplier);
if (!Number.isFinite(rate) || Math.abs(rate - 1.0) < 1e-9 || rate <= 0) {
return `Kiro ${base}`;
}
// Locale-independent decimal formatting.
const rateStr = rate.toFixed(1).replace(",", ".");
return `Kiro ${base} (${rateStr}x credit)`;
}
/**
* Fetch the raw model catalog from Kiro. Returns the array under `.models`
* from the API response, or throws on network/HTTP error.
*/
async function fetchKiroCatalogRaw(credentials, signal) {
const profileArn = credentials?.providerSpecificData?.profileArn || "";
const region = regionFromProfileArn(profileArn);
const params = new URLSearchParams();
params.set("origin", "AI_EDITOR");
if (profileArn) params.set("profileArn", profileArn);
const url = `https://q.${region}.amazonaws.com/ListAvailableModels?${params.toString()}`;
const headers = {
...buildKiroFingerprintHeaders(credentials),
"Authorization": `Bearer ${credentials?.accessToken || ""}`
};
const controller = new AbortController();
const timer = setTimeout(() => controller.abort("timeout"), FETCH_TIMEOUT_MS);
// Forward outer cancellation if any.
if (signal && typeof signal.addEventListener === "function") {
signal.addEventListener("abort", () => controller.abort(signal.reason));
}
let response;
try {
response = await fetch(url, {
method: "GET",
headers,
signal: controller.signal
});
} finally {
clearTimeout(timer);
}
if (!response.ok) {
const text = await response.text().catch(() => "");
const err = new Error(`Kiro ListAvailableModels ${response.status}: ${text || response.statusText}`);
err.status = response.status;
err.body = text;
throw err;
}
const data = await response.json();
const models = Array.isArray(data?.models) ? data.models : [];
return models;
}
/**
* Build a stable cache key for a Kiro credential. Uses the most stable id we
* have available so different login sessions for the same account share a
* cache entry.
*/
function cacheKey(credentials) {
const psd = credentials?.providerSpecificData || {};
const seed =
psd.profileArn
|| psd.clientId
|| credentials?.refreshToken
|| credentials?.accessToken
|| "anonymous";
return createHash("sha256").update(`kiro:${seed}`).digest("hex");
}
/**
* Resolve the live Kiro model catalog for a credential and expand each entry
* into 9router variants (`-thinking`, `-agentic`, `-thinking-agentic`).
*
* On any error (network, 4xx, 5xx), returns `null` so callers can fall back
* to the static catalog without taking down the dashboard or `/v1/models`.
*
* @param {object} credentials Connection record (accessToken, refreshToken,
* providerSpecificData {profileArn, authMethod, clientId, clientSecret, region})
* @param {object} [options]
* @param {boolean} [options.forceRefresh] Bypass the per-credential cache.
* @param {object} [options.log] Logger.
* @param {function} [options.onCredentialsRefreshed] Persist refreshed token
* back to your credential store. Called with `{ accessToken, refreshToken,
* expiresIn }` whenever a 401 triggers a token refresh.
* @returns {Promise<{ models: object[], rawModels: object[] } | null>}
*/
export async function resolveKiroModels(credentials, options = {}) {
if (!credentials || !credentials.accessToken) {
options.log?.debug?.("KIRO_MODELS", "No accessToken; skipping live fetch");
return null;
}
const key = cacheKey(credentials);
const now = Date.now();
if (!options.forceRefresh) {
const cached = catalogCache.get(key);
if (cached && cached.expiresAt > now) {
return { models: cached.models, rawModels: cached.rawModels };
}
}
let raw;
try {
raw = await fetchKiroCatalogRaw(credentials, options.signal);
} catch (err) {
if (err && err.status === 401 && credentials.refreshToken) {
options.log?.info?.("KIRO_MODELS", "Got 401 from Kiro; refreshing token");
const refreshed = await refreshKiroToken(
credentials.refreshToken,
credentials.providerSpecificData,
options.log
);
if (refreshed?.accessToken) {
const next = { ...credentials, ...refreshed };
if (typeof options.onCredentialsRefreshed === "function") {
try { await options.onCredentialsRefreshed(refreshed); } catch (e) {
options.log?.warn?.("KIRO_MODELS", `onCredentialsRefreshed failed: ${e?.message || e}`);
}
}
try {
raw = await fetchKiroCatalogRaw(next, options.signal);
// Update the in-memory credential reference too so retry logic uses
// the fresh token consistently.
credentials.accessToken = next.accessToken;
if (next.refreshToken) credentials.refreshToken = next.refreshToken;
} catch (err2) {
options.log?.warn?.("KIRO_MODELS", `Retry after refresh failed: ${err2?.message || err2}`);
return null;
}
} else {
options.log?.warn?.("KIRO_MODELS", "Token refresh did not return accessToken");
return null;
}
} else {
options.log?.warn?.("KIRO_MODELS", `ListAvailableModels failed: ${err?.message || err}`);
return null;
}
}
const expanded = [];
for (const m of raw) {
if (!m || typeof m !== "object") continue;
const upstreamId = m.modelId || m.id;
if (!upstreamId) continue;
const display = formatDisplayName(m.modelName, upstreamId, m.rateMultiplier);
const ctx = Number(m?.tokenLimits?.maxInputTokens) || 200_000;
for (const v of buildVariants(upstreamId, display)) {
expanded.push({
...v,
// Carry over context window + raw upstream metadata so the caller
// (e.g. the dashboard models endpoint) can render it.
contextLength: ctx,
rateMultiplier: Number.isFinite(Number(m.rateMultiplier)) ? Number(m.rateMultiplier) : 1.0,
upstreamModelId: upstreamId,
description: m.description || ""
});
}
}
catalogCache.set(key, {
expiresAt: now + CACHE_TTL_MS,
models: expanded,
rawModels: raw
});
return { models: expanded, rawModels: raw };
}
/**
* Drop any cached catalog for this credential. Call this after rotating /
* importing tokens so the next fetch is fresh.
*/
export function invalidateKiroModelCache(credentials) {
if (!credentials) return;
catalogCache.delete(cacheKey(credentials));
}
/**
* Drop the entire in-memory cache. Mostly for tests / manual debug.
*/
export function clearKiroModelCache() {
catalogCache.clear();
}
|