Spaces:
Runtime error
Runtime error
File size: 33,061 Bytes
077865a | 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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 | import crypto from 'crypto';
import { Router } from 'express';
import type { Request, Response } from 'express';
import { z } from 'zod';
import type {
ChatMessage,
ChatToolCall,
ChatToolDefinition,
ChatToolChoice,
} from '@freellmapi/shared/types.js';
import { routeRequest, recordRateLimitHit, recordSuccess, hasEnabledToolsModel, type RouteResult } from '../services/router.js';
import { recordRequest, recordTokens, setCooldown, getCooldownDurationForLimit, PAYMENT_REQUIRED_COOLDOWN_MS } from '../services/ratelimit.js';
import { getUnifiedApiKey } from '../db/index.js';
import { contentToString } from '../lib/content.js';
import { repairToolArguments, toolSchemaMap } from '../lib/tool-args.js';
import { rescueInlineToolCalls, startsWithDialectMarker, couldBecomeDialectMarker, containsDialectMarker } from '../lib/tool-call-rescue.js';
import {
isRetryableError,
isPaymentRequiredError,
isModelNotFoundError,
timingSafeStringEqual,
extractApiToken,
getStickyModel,
setStickyModel,
logRequest,
} from './proxy.js';
import { sanitizeProviderErrorMessage } from '../lib/error-redaction.js';
export const responsesRouter = Router();
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// OpenAI Responses API shim (POST /v1/responses).
//
// Current Codex versions only speak the Responses API β `wire_api = "chat"`
// is rejected β so the existing /v1/chat/completions endpoint isn't reachable
// from Codex (see issue #96). This endpoint accepts a Responses-shaped request,
// translates it to the internal chat-message format, runs it through the SAME
// router/retry machinery as the proxy, and translates the result back into the
// Responses object / SSE event stream that Codex expects.
//
// Deliberately self-contained: it duplicates the proxy's retry loop rather than
// refactoring that battle-tested handler, so the production /chat/completions
// path is untouched. Shared, side-effect-free helpers (routing, rate-limit
// bookkeeping, sticky sessions, logging) are imported, not re-implemented.
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const MAX_RETRIES = 20;
function newId(prefix: string): string {
return `${prefix}_${crypto.randomBytes(18).toString('hex')}`;
}
function nowUnix(): number {
return Math.floor(Date.now() / 1000);
}
// ββ Request schema ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Lenient on purpose: the Responses API surface is large and evolving, and we
// only consume the fields we can map. Unknown fields (store, reasoning,
// metadata, previous_response_id, β¦) are accepted and ignored.
const contentPartSchema = z.object({ type: z.string() }).passthrough();
const messageItemSchema = z.object({
type: z.literal('message').optional(),
role: z.enum(['system', 'developer', 'user', 'assistant']),
content: z.union([z.string(), z.array(contentPartSchema)]),
});
const functionCallItemSchema = z.object({
type: z.literal('function_call'),
call_id: z.string(),
name: z.string(),
arguments: z.string(),
id: z.string().optional(),
});
const functionCallOutputItemSchema = z.object({
type: z.literal('function_call_output'),
call_id: z.string(),
output: z.union([z.string(), z.array(contentPartSchema), z.record(z.string(), z.unknown())]),
});
const inputItemSchema = z.union([
functionCallItemSchema,
functionCallOutputItemSchema,
messageItemSchema,
]);
// Accept ANY tool type, not just 'function'. Codex (Responses API) sends
// built-in tools like `web_search` / `local_shell` alongside function tools;
// a strict z.literal('function') rejected the whole request. We validate
// loosely here and drop non-function tools at conversion (toChatTools), since
// chat-completions providers only accept type:'function'.
const responsesToolSchema = z.object({
type: z.string(),
name: z.string().optional(),
description: z.string().nullable().optional(),
parameters: z.record(z.string(), z.unknown()).nullable().optional(),
strict: z.boolean().nullable().optional(),
}).passthrough();
const responsesRequestSchema = z.object({
model: z.string().optional(),
instructions: z.string().nullable().optional(),
input: z.union([z.string(), z.array(inputItemSchema)]),
stream: z.boolean().optional(),
temperature: z.number().min(0).max(2).nullable().optional(),
top_p: z.number().min(0).max(1).nullable().optional(),
max_output_tokens: z.number().int().positive().nullable().optional(),
tools: z.array(responsesToolSchema).optional(),
tool_choice: z.union([
z.enum(['none', 'auto', 'required']),
z.object({ type: z.literal('function'), name: z.string() }).passthrough(),
]).optional(),
parallel_tool_calls: z.boolean().nullable().optional(),
}).passthrough();
type ResponsesRequest = z.infer<typeof responsesRequestSchema>;
// Responses content parts β plain text. input_text / output_text both carry
// `text`; other part types (images, etc.) are dropped (parity with the proxy).
function partsToString(content: string | Array<{ type: string; text?: unknown }>): string {
if (typeof content === 'string') return content;
return content
.map((p) => (typeof p.text === 'string' ? p.text : ''))
.join('');
}
// Image input via the Responses API isn't carried through translation yet
// (partsToString flattens to text). Detect it so we can hard-fail with a clear
// pointer to /v1/chat/completions rather than silently dropping the image
// (#118, #125). Recognizes the Responses `input_image` part plus the
// chat-style `image_url` / `image` parts some clients reuse here.
export function responsesInputHasImage(req: ResponsesRequest): boolean {
if (typeof req.input === 'string') return false;
for (const item of req.input) {
const content = (item as { content?: unknown }).content;
if (!Array.isArray(content)) continue;
if (content.some((p) => {
const type = (p as { type?: string })?.type;
return type === 'input_image' || type === 'image_url' || type === 'image';
})) return true;
}
return false;
}
// ββ Translate a Responses request β internal chat messages + options ββββββ
export function toChatMessages(req: ResponsesRequest): ChatMessage[] {
const messages: ChatMessage[] = [];
if (req.instructions) {
messages.push({ role: 'system', content: req.instructions });
}
if (typeof req.input === 'string') {
messages.push({ role: 'user', content: req.input });
return messages;
}
for (const item of req.input) {
if ('type' in item && item.type === 'function_call') {
messages.push({
role: 'assistant',
content: null,
tool_calls: [{
id: item.call_id,
type: 'function',
function: { name: item.name, arguments: item.arguments },
}],
});
} else if ('type' in item && item.type === 'function_call_output') {
const output = typeof item.output === 'string'
? item.output
: Array.isArray(item.output)
? partsToString(item.output as any)
: JSON.stringify(item.output);
messages.push({ role: 'tool', tool_call_id: item.call_id, content: output });
} else {
// message item
const m = item as z.infer<typeof messageItemSchema>;
// 'developer' is the Responses-era system role.
const role = m.role === 'developer' ? 'system' : m.role;
messages.push({ role, content: partsToString(m.content) });
}
}
return messages;
}
export function toChatTools(tools?: ResponsesRequest['tools']): ChatToolDefinition[] | undefined {
if (!tools?.length) return undefined;
// Forward only function tools β chat-completions upstreams reject other
// Responses-API tool types (web_search, local_shell, etc.). Codex sends those
// extras alongside its function tools (shell/exec, apply_patch); dropping them
// keeps the request valid without losing the tools that actually do the work.
const fns = tools.filter((t): t is typeof t & { name: string } => t.type === 'function' && typeof t.name === 'string');
if (!fns.length) return undefined;
return fns.map((t) => ({
type: 'function',
function: {
name: t.name,
...(t.description ? { description: t.description } : {}),
...(t.parameters ? { parameters: t.parameters } : {}),
...(t.strict != null ? { strict: t.strict } : {}),
},
}));
}
export function toChatToolChoice(tc?: ResponsesRequest['tool_choice']): ChatToolChoice | undefined {
if (!tc) return undefined;
if (typeof tc === 'string') return tc;
return { type: 'function', function: { name: tc.name } };
}
// ββ Build the final (non-stream) Responses object βββββββββββββββββββββββββ
export function buildResponseObject(opts: {
id: string;
model: string;
text: string;
toolCalls: ChatToolCall[];
promptTokens: number;
completionTokens: number;
}) {
const output: any[] = [];
if (opts.text.length > 0) {
output.push({
type: 'message',
id: newId('msg'),
status: 'completed',
role: 'assistant',
content: [{ type: 'output_text', text: opts.text, annotations: [] }],
});
}
for (const tc of opts.toolCalls) {
output.push({
type: 'function_call',
id: newId('fc'),
call_id: tc.id,
name: tc.function.name,
arguments: tc.function.arguments,
status: 'completed',
});
}
return {
id: opts.id,
object: 'response',
created_at: nowUnix(),
status: 'completed',
model: opts.model,
output,
output_text: opts.text,
usage: {
input_tokens: opts.promptTokens,
input_tokens_details: { cached_tokens: 0 },
output_tokens: opts.completionTokens,
output_tokens_details: { reasoning_tokens: 0 },
total_tokens: opts.promptTokens + opts.completionTokens,
},
};
}
responsesRouter.post('/responses', async (req: Request, res: Response) => {
const start = Date.now();
// Same unified-key auth as the proxy (accepts Bearer or x-api-key).
const token = extractApiToken(req);
const unifiedKey = getUnifiedApiKey();
if (!token || !timingSafeStringEqual(token, unifiedKey)) {
res.status(401).json({ error: { message: 'Invalid API key', type: 'authentication_error' } });
return;
}
const parsed = responsesRequestSchema.safeParse(req.body);
if (!parsed.success) {
res.status(400).json({
error: {
message: `Invalid request: ${parsed.error.errors.map((e) => `${e.path.join('.')}: ${e.message}`).join(', ')}`,
type: 'invalid_request_error',
},
});
return;
}
const reqData = parsed.data;
// Vision isn't carried through the Responses translation yet β fail clearly
// instead of answering blind to a dropped image (#118, #125).
if (responsesInputHasImage(reqData)) {
res.status(422).json({
error: {
message: 'Image input is not yet supported on /v1/responses. Use /v1/chat/completions with an image_url content part instead.',
type: 'invalid_request_error',
code: 'no_vision_model',
},
});
return;
}
const stream = reqData.stream ?? false;
const messages = toChatMessages(reqData);
const tools = toChatTools(reqData.tools);
// name β parameter schema, for repairing double-encoded tool arguments on
// the way back out (see lib/tool-args.ts).
const toolSchemas = toolSchemaMap(tools);
const tool_choice = toChatToolChoice(reqData.tool_choice);
const completionOpts = {
temperature: reqData.temperature ?? undefined,
max_tokens: reqData.max_output_tokens ?? undefined,
top_p: reqData.top_p ?? undefined,
tools,
tool_choice,
parallel_tool_calls: reqData.parallel_tool_calls ?? undefined,
};
const estimatedInputTokens = messages.reduce(
(sum, m) => sum + Math.ceil(contentToString(m.content).length / 4),
0,
);
const estimatedTotal = estimatedInputTokens + (reqData.max_output_tokens ?? 1000);
// Optional client-managed session affinity (mirrors /chat/completions).
const rawSessionId = req.headers['x-session-id'];
const sessionIdHeader = Array.isArray(rawSessionId) ? rawSessionId[0] : rawSessionId;
const preferredModel = getStickyModel(messages, sessionIdHeader);
// Tool-bearing requests (the normal case for Codex/agent clients on this
// endpoint) must stay on models that emit structured tool_calls β a model
// that serializes the call into text strands the agent harness with a
// "successful" run it can't act on. Mirrors the /chat/completions gate.
const wantsTools = (tools?.length ?? 0) > 0;
if (wantsTools && !hasEnabledToolsModel()) {
res.status(422).json({
error: {
message: 'This request includes tools, but no tool-capable model is enabled. Enable a tool-calling model (e.g. GPT-OSS 120B, Gemini 3.5 Flash, GLM-4.7) in the Fallback Chain.',
type: 'invalid_request_error',
code: 'no_tools_model',
},
});
return;
}
const responseId = newId('resp');
const skipKeys = new Set<string>();
const skipModels = new Set<number>();
let lastError: any = null;
// Stream bookkeeping (used only when stream === true).
let seq = 0;
let streamStarted = false;
const sse = (event: string, payload: Record<string, unknown>) => {
res.write(`event: ${event}\n`);
res.write(`data: ${JSON.stringify({ type: event, sequence_number: seq++, ...payload })}\n\n`);
};
for (let attempt = 0; attempt < MAX_RETRIES; attempt++) {
let route: RouteResult;
try {
route = routeRequest(estimatedTotal, skipKeys.size > 0 ? skipKeys : undefined, preferredModel, false, wantsTools, skipModels.size > 0 ? skipModels : undefined);
} catch (err: any) {
const status = lastError ? 429 : (err.status ?? 503);
const message = lastError
? `All models rate-limited. Last error: ${sanitizeProviderErrorMessage(lastError.message)}`
: err.message;
const type = lastError ? 'rate_limit_error' : 'routing_error';
if (streamStarted) {
sse('response.failed', { response: { id: responseId, object: 'response', status: 'failed', error: { message, type } } });
res.end();
} else {
res.status(status).json({ error: { message, type } });
}
return;
}
try {
if (stream) {
let outputIndex = 0;
let msgItemId: string | null = null;
let msgText = '';
// tool-call accumulator keyed by the provider's tool_call index
const toolAcc = new Map<number, { outputIndex: number; itemId: string; callId: string; name: string; args: string }>();
let totalOutputTokens = 0;
// Inline-dialect hold window (#231): first text is held until it
// either matches a tool-call dialect marker (held to the end and
// rescued into function_call items) or provably cannot (flushed and
// streamed normally). Mirrors the /chat/completions stream loop.
let dialectMode: 'undecided' | 'passthrough' | 'dialect' = 'undecided';
let heldText = '';
// Open the text output item and stream `text` as its first delta.
const openTextItem = (text: string) => {
msgItemId = newId('msg');
sse('response.output_item.added', {
output_index: outputIndex,
item: { id: msgItemId, type: 'message', status: 'in_progress', role: 'assistant', content: [] },
});
sse('response.content_part.added', {
item_id: msgItemId, output_index: outputIndex, content_index: 0,
part: { type: 'output_text', text: '', annotations: [] },
});
if (text) {
sse('response.output_text.delta', { item_id: msgItemId, output_index: outputIndex, content_index: 0, delta: text });
msgText += text;
}
};
const gen = route.provider.streamChatCompletion(route.apiKey, messages, route.modelId, completionOpts);
for await (const chunk of gen) {
// In-band upstream error frame ({"error":...} inside a 200 SSE
// stream β observed live from Groq). Throw before the lazy header
// block so a first-frame error keeps streamStarted=false and takes
// the normal failover path in the catch below.
const anyChunk = chunk as Record<string, any>;
if (anyChunk.error && !anyChunk.choices) {
throw new Error(`in-band provider error from ${route.displayName}: ${anyChunk.error.message ?? 'provider error'}`);
}
// LAZY header set β headers + the response.created/in_progress
// skeleton go out only once the provider actually streams a chunk.
// Sending them before the provider call (the previous behavior)
// committed the SSE response, so a provider error AT STREAM OPEN β
// e.g. OpenRouter 503ing a large-context request β was misclassified
// as mid-stream and returned to the client with NO failover and NO
// cooldown; the next request then hit the same broken model again
// (observed: 17 consecutive 503s to the same model while the rest of
// the chain sat idle). With lazy headers a connect-time error
// bubbles to the catch with streamStarted=false and takes the normal
// retry path. Mirrors the proxy's streaming handler.
if (!streamStarted) {
res.setHeader('Content-Type', 'text/event-stream');
res.setHeader('Cache-Control', 'no-cache');
res.setHeader('Connection', 'keep-alive');
res.setHeader('X-Routed-Via', `${route.platform}/${route.modelId}`);
if (attempt > 0) res.setHeader('X-Fallback-Attempts', String(attempt));
const skeleton = {
id: responseId, object: 'response', created_at: nowUnix(),
status: 'in_progress', model: route.modelId, output: [], output_text: '',
};
sse('response.created', { response: skeleton });
sse('response.in_progress', { response: skeleton });
streamStarted = true;
}
const delta = chunk.choices?.[0]?.delta;
if (!delta) continue;
// Text deltas β output_text events on a single message item, after
// the dialect hold window has decided the text is real prose.
const text = delta.content ?? '';
if (text) {
totalOutputTokens += Math.ceil(text.length / 4);
if (dialectMode === 'passthrough') {
if (msgItemId === null) openTextItem('');
sse('response.output_text.delta', {
item_id: msgItemId, output_index: 0, content_index: 0, delta: text,
});
msgText += text;
} else {
heldText += text;
if (dialectMode === 'undecided') {
const probe = heldText.trimStart();
if (startsWithDialectMarker(probe)) {
dialectMode = 'dialect';
} else if (!couldBecomeDialectMarker(probe) || heldText.length > 256) {
dialectMode = 'passthrough';
openTextItem(heldText);
heldText = '';
}
}
}
}
// Tool-call deltas β function_call item + argument deltas.
for (const tc of delta.tool_calls ?? []) {
const idx = (tc as any).index ?? 0;
let acc = toolAcc.get(idx);
if (!acc) {
// First time we see this tool call: open a new output item.
if (msgItemId !== null && msgText.length > 0) {
// close the text item (always output index 0) before starting a function_call item
sse('response.output_text.done', { item_id: msgItemId, output_index: 0, content_index: 0, text: msgText });
sse('response.content_part.done', { item_id: msgItemId, output_index: 0, content_index: 0, part: { type: 'output_text', text: msgText, annotations: [] } });
sse('response.output_item.done', { output_index: 0, item: { id: msgItemId, type: 'message', status: 'completed', role: 'assistant', content: [{ type: 'output_text', text: msgText, annotations: [] }] } });
msgItemId = null;
}
outputIndex = toolAcc.size + (msgText.length > 0 ? 1 : 0);
acc = { outputIndex, itemId: newId('fc'), callId: tc.id || newId('call'), name: tc.function?.name ?? '', args: '' };
toolAcc.set(idx, acc);
sse('response.output_item.added', {
output_index: acc.outputIndex,
item: { id: acc.itemId, type: 'function_call', status: 'in_progress', call_id: acc.callId, name: acc.name, arguments: '' },
});
}
const argFrag = tc.function?.arguments ?? '';
if (tc.function?.name && !acc.name) acc.name = tc.function.name;
if (argFrag) {
acc.args += argFrag;
sse('response.function_call_arguments.delta', { item_id: acc.itemId, output_index: acc.outputIndex, delta: argFrag });
}
}
}
// Resolve the dialect hold window now that the full text is known.
// Held text was never emitted, so a dead dialect turn can still fail
// over on the same SSE stream (only the skeleton events are out).
if (heldText.length > 0) {
const rescue = (dialectMode === 'dialect' || containsDialectMarker(heldText))
? rescueInlineToolCalls(heldText, new Set((tools ?? []).map(t => t.function.name)))
: { detected: false as const, calls: null, cleanText: heldText };
if (rescue.detected && !rescue.calls) {
logRequest(route.platform, route.modelId, route.keyId, 'error', estimatedInputTokens, 0, Date.now() - start, `unparseable inline tool-call dialect: ${heldText.slice(0, 120)}`);
skipKeys.add(`${route.platform}:${route.modelId}:${route.keyId}`);
setCooldown(route.platform, route.modelId, route.keyId, getCooldownDurationForLimit(route.platform, route.modelId, route.keyId, { rpd: route.rpdLimit, tpd: route.tpdLimit }));
recordRateLimitHit(route.modelDbId);
lastError = new Error(`unparseable inline tool-call dialect from ${route.displayName}`);
continue;
}
if (rescue.detected && rescue.calls) {
// Rescued calls become function_call items, exactly as if the
// provider had streamed them structurally.
console.log(`[Responses] Rescued ${rescue.calls.length} inline tool call(s) from ${route.displayName}`);
if (rescue.cleanText.length > 0 && msgItemId === null) openTextItem(rescue.cleanText);
let rescuedIdx = 0;
for (const c of rescue.calls) {
const idx = 1000 + rescuedIdx++; // synthetic accumulator keys, past any provider index
const acc = {
outputIndex: toolAcc.size + (msgText.length > 0 ? 1 : 0),
itemId: newId('fc'), callId: newId('call'), name: c.name, args: c.arguments,
};
toolAcc.set(idx, acc);
sse('response.output_item.added', {
output_index: acc.outputIndex,
item: { id: acc.itemId, type: 'function_call', status: 'in_progress', call_id: acc.callId, name: acc.name, arguments: '' },
});
}
} else if (msgItemId === null) {
// Plain short answer that never left the hold window (e.g. "Hi").
openTextItem(heldText);
}
heldText = '';
}
// Empty completion β the provider returned 200 with no text AND no
// tool calls. Seen in production from nemotron-3-super on ~65k-token
// contexts: transport-level "success", zero usable output, so the
// agent client records a successful run it can't act on and its issue
// dead-ends. Nothing substantive has been emitted yet (output_item
// events only fire on the first delta; only the created/in_progress
// skeletons are out), so it's safe to fail over to the next model on
// the same SSE stream.
if (msgText.length === 0 && toolAcc.size === 0) {
logRequest(route.platform, route.modelId, route.keyId, 'error', estimatedInputTokens, 0, Date.now() - start, 'empty completion (no content, no tool_calls)');
skipKeys.add(`${route.platform}:${route.modelId}:${route.keyId}`);
setCooldown(route.platform, route.modelId, route.keyId, getCooldownDurationForLimit(route.platform, route.modelId, route.keyId, { rpd: route.rpdLimit, tpd: route.tpdLimit }));
recordRateLimitHit(route.modelDbId);
lastError = new Error(`empty completion from ${route.displayName}`);
continue;
}
// Finalize any open text item.
if (msgItemId !== null) {
sse('response.output_text.done', { item_id: msgItemId, output_index: 0, content_index: 0, text: msgText });
sse('response.content_part.done', { item_id: msgItemId, output_index: 0, content_index: 0, part: { type: 'output_text', text: msgText, annotations: [] } });
sse('response.output_item.done', { output_index: 0, item: { id: msgItemId, type: 'message', status: 'completed', role: 'assistant', content: [{ type: 'output_text', text: msgText, annotations: [] }] } });
}
// Finalize tool-call items. Arguments are repaired against the tool's
// parameter schema at this point (after the full string accumulated):
// models like GLM double-encode nested arrays/objects as strings, and
// Codex hard-rejects the call ("invalid type: string, expected a
// sequence"). Clients consume the *.done events / final response for
// arguments, so repairing here covers the streamed path too.
const finalToolCalls: ChatToolCall[] = [];
for (const acc of toolAcc.values()) {
const repairedArgs = repairToolArguments(acc.args, toolSchemas.get(acc.name));
sse('response.function_call_arguments.done', { item_id: acc.itemId, output_index: acc.outputIndex, arguments: repairedArgs });
sse('response.output_item.done', { output_index: acc.outputIndex, item: { id: acc.itemId, type: 'function_call', status: 'completed', call_id: acc.callId, name: acc.name, arguments: repairedArgs } });
finalToolCalls.push({ id: acc.callId, type: 'function', function: { name: acc.name, arguments: repairedArgs } });
}
const finalResponse = buildResponseObject({
id: responseId, model: route.modelId, text: msgText,
toolCalls: finalToolCalls, promptTokens: estimatedInputTokens, completionTokens: totalOutputTokens,
});
sse('response.completed', { response: finalResponse });
res.end();
recordRequest(route.platform, route.modelId, route.keyId);
recordTokens(route.platform, route.modelId, route.keyId, estimatedInputTokens + totalOutputTokens);
recordSuccess(route.modelDbId);
setStickyModel(messages, route.modelDbId, sessionIdHeader);
logRequest(route.platform, route.modelId, route.keyId, 'success', estimatedInputTokens, totalOutputTokens, Date.now() - start, null);
return;
} else {
const result = await route.provider.chatCompletion(route.apiKey, messages, route.modelId, completionOpts);
const msg = result.choices[0]?.message;
let text = contentToString(msg?.content ?? '');
let toolCalls = (msg?.tool_calls ?? []).map((tc) => ({
...tc,
function: { ...tc.function, arguments: repairToolArguments(tc.function.arguments, toolSchemas.get(tc.function.name)) },
}));
// Inline tool-call dialect rescue (#231) β see /chat/completions.
if (wantsTools && toolCalls.length === 0 && text) {
const rescue = rescueInlineToolCalls(text, new Set((tools ?? []).map(t => t.function.name)));
if (rescue.detected) {
if (!rescue.calls) {
throw new Error(`unparseable inline tool-call dialect from ${route.displayName}: ${text.slice(0, 120)}`);
}
console.log(`[Responses] Rescued ${rescue.calls.length} inline tool call(s) from ${route.displayName}`);
toolCalls = rescue.calls.map((c, i) => ({
id: `call_rescued_${i + 1}`,
type: 'function' as const,
function: { name: c.name, arguments: repairToolArguments(c.arguments, toolSchemas.get(c.name)) },
}));
text = rescue.cleanText;
}
}
const promptTokens = result.usage?.prompt_tokens ?? estimatedInputTokens;
const completionTokens = result.usage?.completion_tokens ?? Math.ceil(text.length / 4);
// Empty completion β fail over (see the streaming-path comment above).
if (!text && toolCalls.length === 0) {
logRequest(route.platform, route.modelId, route.keyId, 'error', estimatedInputTokens, 0, Date.now() - start, 'empty completion (no content, no tool_calls)');
skipKeys.add(`${route.platform}:${route.modelId}:${route.keyId}`);
setCooldown(route.platform, route.modelId, route.keyId, getCooldownDurationForLimit(route.platform, route.modelId, route.keyId, { rpd: route.rpdLimit, tpd: route.tpdLimit }));
recordRateLimitHit(route.modelDbId);
lastError = new Error(`empty completion from ${route.displayName}`);
continue;
}
recordRequest(route.platform, route.modelId, route.keyId);
recordTokens(route.platform, route.modelId, route.keyId, result.usage?.total_tokens ?? 0);
recordSuccess(route.modelDbId);
setStickyModel(messages, route.modelDbId, sessionIdHeader);
res.setHeader('X-Routed-Via', `${route.platform}/${route.modelId}`);
if (attempt > 0) res.setHeader('X-Fallback-Attempts', String(attempt));
res.json(buildResponseObject({
id: responseId, model: route.modelId, text, toolCalls,
promptTokens, completionTokens,
}));
logRequest(route.platform, route.modelId, route.keyId, 'success',
promptTokens, completionTokens, Date.now() - start, null);
return;
}
} catch (err: any) {
const latency = Date.now() - start;
const safeError = sanitizeProviderErrorMessage(err.message);
logRequest(route.platform, route.modelId, route.keyId, 'error', estimatedInputTokens, 0, latency, safeError);
// Mid-stream failures can't be retried (bytes already sent) β close cleanly.
if (stream && streamStarted) {
sse('response.failed', { response: { id: responseId, object: 'response', status: 'failed', error: { message: `Provider error (${route.displayName}): stream interrupted`, type: 'stream_error' } } });
res.end();
return;
}
if (isRetryableError(err)) {
// Model-level 404: rule out the whole model for this request β its
// other keys would 404 the same way. (PR #111, credits @barbotkonv.)
if (isModelNotFoundError(err)) skipModels.add(route.modelDbId);
skipKeys.add(`${route.platform}:${route.modelId}:${route.keyId}`);
setCooldown(route.platform, route.modelId, route.keyId, isPaymentRequiredError(err)
? PAYMENT_REQUIRED_COOLDOWN_MS
: getCooldownDurationForLimit(route.platform, route.modelId, route.keyId, { rpd: route.rpdLimit, tpd: route.tpdLimit }));
recordRateLimitHit(route.modelDbId);
lastError = err;
continue;
}
res.status(502).json({ error: { message: `Provider error (${route.displayName}): ${safeError}`, type: 'provider_error' } });
return;
}
}
// Exhausted all retries. The streaming skeleton may already be on the wire
// (reachable since empty-completion failover can burn every attempt after
// streamStarted) β close the SSE stream with a failed event instead of
// writing JSON onto a committed event-stream response.
const exhaustedMsg = `All models rate-limited after ${MAX_RETRIES} attempts. Last: ${lastError?.message}`;
if (streamStarted) {
sse('response.failed', { response: { id: responseId, object: 'response', status: 'failed', error: { message: exhaustedMsg, type: 'rate_limit_error' } } });
res.end();
return;
}
res.status(429).json({
error: { message: exhaustedMsg, type: 'rate_limit_error' },
});
});
|