File size: 16,212 Bytes
391c43e | 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 | /**
* Codex Adapter — Server-side format conversion between
* Chat Completions API and the Codex Responses API.
*
* All transformations happen here so the client streaming parser,
* orchestrator, and UI remain unchanged.
*/
import { LLMMessage, ContentBlock, TextContentBlock, ImageContentBlock } from './types';
import { logger } from '@/lib/utils';
// --- Vendored Codex utilities (avoids bundling the full package with fs/path side effects) ---
import {
decodeJWT,
createCodexHeaders,
handleErrorResponse,
getReasoningConfig,
getNormalizedModel,
CODEX_BASE_URL,
JWT_CLAIM_PATH,
} from './codex-utils';
// ---------------------------------------------------------------------------
// Types
// ---------------------------------------------------------------------------
interface CodexInputItem {
type: string;
role?: string;
content?: unknown;
name?: string;
call_id?: string;
arguments?: string;
output?: string;
[key: string]: unknown;
}
interface CodexTool {
type: 'function';
name: string;
description: string;
parameters: unknown;
}
interface ChatCompletionsTool {
name: string;
description: string;
parameters: unknown;
}
// ---------------------------------------------------------------------------
// 1. Message conversion: Chat Completions → Responses API input
// ---------------------------------------------------------------------------
function getTextFromContent(content: string | ContentBlock[]): string {
if (typeof content === 'string') return content;
return content
.filter((b): b is TextContentBlock => b.type === 'text')
.map(b => b.text)
.join('\n');
}
/**
* Convert Chat Completions content blocks to Responses API content items.
* Maps `text` → `input_text` and `image_url` → `input_image`.
*/
function contentToCodexContent(content: string | ContentBlock[]): unknown[] {
if (typeof content === 'string') {
return [{ type: 'input_text', text: content }];
}
return content.map(block => {
if (block.type === 'text') {
return { type: 'input_text', text: block.text };
}
if (block.type === 'image_url') {
return { type: 'input_image', image_url: (block as ImageContentBlock).image_url.url };
}
return { type: 'input_text', text: '' };
});
}
/**
* Convert Chat Completions messages to Responses API `input` array.
* System messages are extracted separately as `instructions`.
*/
export function messagesToCodexInput(
messages: LLMMessage[]
): { input: CodexInputItem[]; systemPrompt: string } {
let systemPrompt = '';
const input: CodexInputItem[] = [];
for (const msg of messages) {
if (msg.role === 'system') {
// Collect system prompts into instructions
systemPrompt += (systemPrompt ? '\n\n' : '') + getTextFromContent(msg.content);
continue;
}
if (msg.role === 'user') {
input.push({
type: 'message',
role: 'user',
content: contentToCodexContent(msg.content),
});
continue;
}
if (msg.role === 'assistant') {
// If there are tool_calls, emit each as a separate function_call item
if (msg.tool_calls && msg.tool_calls.length > 0) {
// Emit text content first if present
const text = getTextFromContent(msg.content);
if (text) {
input.push({
type: 'message',
role: 'assistant',
content: [{ type: 'output_text', text }],
});
}
for (const tc of msg.tool_calls) {
input.push({
type: 'function_call',
name: tc.function.name,
call_id: tc.id,
arguments: tc.function.arguments,
});
}
} else {
const text = getTextFromContent(msg.content);
input.push({
type: 'message',
role: 'assistant',
content: [{ type: 'output_text', text }],
});
}
continue;
}
if (msg.role === 'tool') {
input.push({
type: 'function_call_output',
call_id: msg.tool_call_id || '',
output: typeof msg.content === 'string' ? msg.content : JSON.stringify(msg.content),
});
continue;
}
}
return { input, systemPrompt };
}
// ---------------------------------------------------------------------------
// 2. Tool conversion: Chat Completions → Responses API format
// ---------------------------------------------------------------------------
export function toolsToCodexFormat(
tools: ChatCompletionsTool[]
): CodexTool[] {
return tools.map(t => ({
type: 'function' as const,
name: t.name,
description: t.description,
parameters: t.parameters,
}));
}
// ---------------------------------------------------------------------------
// 3. Build full Codex request body
// ---------------------------------------------------------------------------
export function buildCodexRequestBody(opts: {
model: string;
input: CodexInputItem[];
tools?: CodexTool[];
instructions: string;
}): Record<string, unknown> {
// Pass through models unknown to the package's MODEL_MAP
const knownMapping = getNormalizedModel(opts.model);
const modelId = knownMapping || opts.model;
const reasoning = getReasoningConfig(opts.model);
const body: Record<string, unknown> = {
model: modelId,
input: opts.input,
instructions: opts.instructions,
store: false,
stream: true,
reasoning,
text: { verbosity: 'medium' },
include: ['reasoning.encrypted_content'],
};
if (opts.tools && opts.tools.length > 0) {
body.tools = opts.tools;
body.tool_choice = 'auto';
}
return body;
}
// ---------------------------------------------------------------------------
// 4. Extract account ID from JWT access token
// ---------------------------------------------------------------------------
export function getCodexAccountId(accessToken: string): string {
const decoded = decodeJWT(accessToken);
if (!decoded) {
throw new Error('Failed to decode Codex access token');
}
const claims = decoded?.[JWT_CLAIM_PATH] as Record<string, unknown> | undefined;
const accountId = claims?.chatgpt_account_id as string | undefined;
if (!accountId) {
throw new Error('Failed to extract chatgpt_account_id from token');
}
return accountId;
}
// ---------------------------------------------------------------------------
// 5. SSE Transformer: Responses API → Chat Completions format
// ---------------------------------------------------------------------------
/**
* Creates a TransformStream that reads Responses API SSE events and
* outputs Chat Completions–compatible SSE events.
*
* The client-side streaming parser expects:
* data: {"choices":[{"index":0,"delta":{"content":"..."},"finish_reason":null}]}
* data: {"choices":[{"index":0,"delta":{"tool_calls":[...]},"finish_reason":null}]}
* data: [DONE]
*/
export function createCodexToCompletionsTransformer(): TransformStream<Uint8Array, Uint8Array> {
const encoder = new TextEncoder();
const decoder = new TextDecoder();
// Track tool call indices keyed by call_id
let toolCallIndex = 0;
const toolCallIndices = new Map<string, number>();
// Buffer for incomplete SSE lines
let buffer = '';
let doneEmitted = false;
return new TransformStream({
transform(chunk, controller) {
buffer += decoder.decode(chunk, { stream: true });
const lines = buffer.split('\n');
// Keep last (possibly incomplete) line in buffer
buffer = lines.pop() || '';
for (const line of lines) {
const trimmed = line.trim();
if (!trimmed || trimmed.startsWith(':')) continue;
if (trimmed.startsWith('event:')) continue; // Skip event type lines
if (!trimmed.startsWith('data:')) continue;
const dataStr = trimmed.slice(5).trim();
if (!dataStr || dataStr === '[DONE]') {
if (dataStr === '[DONE]' && !doneEmitted) {
doneEmitted = true;
controller.enqueue(encoder.encode('data: [DONE]\n\n'));
}
continue;
}
let event: any;
try {
event = JSON.parse(dataStr);
} catch {
// Not JSON, skip
continue;
}
const eventType: string = event.type || '';
// --- Text content delta ---
if (eventType === 'response.output_text.delta') {
const delta = event.delta ?? '';
const completionsChunk = {
choices: [{ index: 0, delta: { content: delta }, finish_reason: null }],
};
controller.enqueue(encoder.encode(`data: ${JSON.stringify(completionsChunk)}\n\n`));
continue;
}
// --- New output item: function_call ---
if (eventType === 'response.output_item.added') {
const item = event.item;
if (item?.type === 'function_call') {
const callId = item.call_id || item.id || `call_${toolCallIndex}`;
const idx = toolCallIndex++;
toolCallIndices.set(callId, idx);
if (item.id && item.id !== callId) toolCallIndices.set(item.id, idx);
if (item.call_id && item.call_id !== callId) toolCallIndices.set(item.call_id, idx);
const completionsChunk = {
choices: [{
index: 0,
delta: {
tool_calls: [{
index: idx,
id: callId,
type: 'function',
function: {
name: item.name || '',
arguments: '',
},
}],
},
finish_reason: null,
}],
};
controller.enqueue(encoder.encode(`data: ${JSON.stringify(completionsChunk)}\n\n`));
}
continue;
}
// --- Function call arguments delta ---
if (eventType === 'response.function_call_arguments.delta') {
const callId = event.call_id || event.item_id || '';
const idx = toolCallIndices.get(callId) ?? (event.output_index ?? 0);
const argDelta = event.delta ?? '';
const completionsChunk = {
choices: [{
index: 0,
delta: {
tool_calls: [{
index: idx,
function: { arguments: argDelta },
}],
},
finish_reason: null,
}],
};
controller.enqueue(encoder.encode(`data: ${JSON.stringify(completionsChunk)}\n\n`));
continue;
}
// --- Response completed ---
if (eventType === 'response.completed' || eventType === 'response.done') {
if (doneEmitted) continue;
doneEmitted = true;
const response = event.response || event;
const hasToolCalls = toolCallIndex > 0;
const finishReason = hasToolCalls ? 'tool_calls' : 'stop';
// Emit usage if available
const usage = response.usage;
const completionsChunk: Record<string, unknown> = {
choices: [{ index: 0, delta: {}, finish_reason: finishReason }],
};
if (usage) {
completionsChunk.usage = {
prompt_tokens: usage.input_tokens ?? 0,
completion_tokens: usage.output_tokens ?? 0,
total_tokens: (usage.input_tokens ?? 0) + (usage.output_tokens ?? 0),
};
}
controller.enqueue(encoder.encode(`data: ${JSON.stringify(completionsChunk)}\n\n`));
controller.enqueue(encoder.encode('data: [DONE]\n\n'));
continue;
}
// Skip other events silently (reasoning, metadata, etc.)
}
},
flush(controller) {
if (buffer.trim() && !doneEmitted) {
const trimmed = buffer.trim();
if (trimmed.startsWith('data:')) {
const dataStr = trimmed.slice(5).trim();
if (dataStr === '[DONE]') {
doneEmitted = true;
controller.enqueue(encoder.encode('data: [DONE]\n\n'));
}
}
}
},
});
}
// ---------------------------------------------------------------------------
// 6. Main handler — called from the API route
// ---------------------------------------------------------------------------
export async function handleCodexGeneration(opts: {
messages: LLMMessage[];
model: string;
tools?: ChatCompletionsTool[];
accessToken: string;
signal?: AbortSignal;
}): Promise<Response> {
const { messages, model, tools, accessToken, signal } = opts;
// 1. Extract account ID from JWT
let accountId: string;
try {
accountId = getCodexAccountId(accessToken);
} catch (err) {
logger.error('[Codex] Failed to extract account ID:', err);
return new Response(
JSON.stringify({ error: 'Invalid Codex access token — could not extract account ID. Try re-authenticating.' }),
{ status: 401, headers: { 'Content-Type': 'application/json' } }
);
}
// 2. Convert messages & tools
const { input, systemPrompt } = messagesToCodexInput(messages);
const codexTools = tools ? toolsToCodexFormat(tools) : undefined;
// 3. Build request body
const body = buildCodexRequestBody({
model,
input,
tools: codexTools,
instructions: systemPrompt,
});
// 4. Build headers using package utility
const headers: Headers = createCodexHeaders(undefined, accountId, accessToken);
headers.set('Content-Type', 'application/json');
// 5. POST to Codex backend
const url = `${CODEX_BASE_URL}/codex/responses`;
let response: globalThis.Response;
try {
response = await fetch(url, {
method: 'POST',
headers,
body: JSON.stringify(body),
...(signal && { signal }),
});
} catch (err) {
if (err instanceof Error && err.name === 'AbortError') {
return new Response(null, { status: 499 });
}
logger.error('[Codex] Network error:', err);
return new Response(
JSON.stringify({ error: 'Failed to reach Codex backend. Check your network connection.' }),
{ status: 503, headers: { 'Content-Type': 'application/json' } }
);
}
// 6. Handle errors — flatten package's nested format to { error: "string" }
if (!response.ok) {
let errorMessage = `Codex API error (${response.status})`;
try {
const errorResponse = await handleErrorResponse(response);
const errorBody = await errorResponse.text();
const parsed = JSON.parse(errorBody);
// Package returns { error: { message, friendly_message, rate_limits, status } }
// Client expects { error: "string" }
if (parsed.error) {
const err = parsed.error;
// Build a concise user-facing message
const resetsAt = err.rate_limits?.primary?.resets_at || err.rate_limits?.secondary?.resets_at;
const mins = resetsAt ? Math.max(0, Math.round((resetsAt * 1000 - Date.now()) / 60000)) : undefined;
const suffix = mins !== undefined ? ` Try again in ~${mins} min.` : '';
if (/usage_limit|rate_limit/i.test(err.code || err.type || err.message || '')) {
errorMessage = `Currently selected model reported a usage limit.${suffix}`;
} else {
errorMessage = err.message || errorMessage;
}
}
} catch {
// Fall through with default message
}
logger.error('[Codex] API error:', errorMessage);
return new Response(
JSON.stringify({ error: errorMessage }),
{ status: response.status, headers: { 'Content-Type': 'application/json' } }
);
}
// 7. Pipe through SSE transformer
if (!response.body) {
return new Response(
JSON.stringify({ error: 'Codex response has no body' }),
{ status: 502, headers: { 'Content-Type': 'application/json' } }
);
}
const transformer = createCodexToCompletionsTransformer();
const transformedStream = response.body.pipeThrough(transformer);
return new Response(transformedStream, {
headers: {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
},
});
}
|