File size: 32,775 Bytes
5844451 | 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 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 | /**
* openai-handler.ts - OpenAI Chat Completions API 兼容处理器
*
* 将 OpenAI 格式请求转换为内部 Anthropic 格式,复用现有 Cursor 交互管道
* 支持流式和非流式响应、工具调用、Cursor IDE Agent 模式
*/
import type { Request, Response } from 'express';
import { v4 as uuidv4 } from 'uuid';
import type {
OpenAIChatRequest,
OpenAIMessage,
OpenAIChatCompletion,
OpenAIChatCompletionChunk,
OpenAIToolCall,
OpenAIContentPart,
OpenAITool,
} from './openai-types.js';
import type {
AnthropicRequest,
AnthropicMessage,
AnthropicContentBlock,
AnthropicTool,
CursorChatRequest,
CursorSSEEvent,
} from './types.js';
import { convertToCursorRequest, parseToolCalls, hasToolCalls } from './converter.js';
import { sendCursorRequest, sendCursorRequestFull } from './cursor-client.js';
import { getConfig } from './config.js';
import { extractThinking } from './thinking.js';
import {
isRefusal,
sanitizeResponse,
isIdentityProbe,
isToolCapabilityQuestion,
buildRetryRequest,
CLAUDE_IDENTITY_RESPONSE,
CLAUDE_TOOLS_RESPONSE,
MAX_REFUSAL_RETRIES,
estimateInputTokens,
} from './handler.js';
function chatId(): string {
return 'chatcmpl-' + uuidv4().replace(/-/g, '').substring(0, 24);
}
function toolCallId(): string {
return 'call_' + uuidv4().replace(/-/g, '').substring(0, 24);
}
// ==================== 请求转换:OpenAI → Anthropic ====================
/**
* 将 OpenAI Chat Completions 请求转换为内部 Anthropic 格式
* 这样可以完全复用现有的 convertToCursorRequest 管道
*/
function convertToAnthropicRequest(body: OpenAIChatRequest): AnthropicRequest {
const rawMessages: AnthropicMessage[] = [];
let systemPrompt: string | undefined;
for (const msg of body.messages) {
switch (msg.role) {
case 'system':
systemPrompt = (systemPrompt ? systemPrompt + '\n\n' : '') + extractOpenAIContent(msg);
break;
case 'user': {
// 检查 content 数组中是否有 tool_result 类型的块(Anthropic 风格)
const contentBlocks = extractOpenAIContentBlocks(msg);
if (Array.isArray(contentBlocks)) {
rawMessages.push({ role: 'user', content: contentBlocks });
} else {
rawMessages.push({ role: 'user', content: contentBlocks || '' });
}
break;
}
case 'assistant': {
const blocks: AnthropicContentBlock[] = [];
const contentBlocks = extractOpenAIContentBlocks(msg);
if (typeof contentBlocks === 'string' && contentBlocks) {
blocks.push({ type: 'text', text: contentBlocks });
} else if (Array.isArray(contentBlocks)) {
blocks.push(...contentBlocks);
}
if (msg.tool_calls && msg.tool_calls.length > 0) {
for (const tc of msg.tool_calls) {
let args: Record<string, unknown> = {};
try {
args = JSON.parse(tc.function.arguments);
} catch {
args = { input: tc.function.arguments };
}
blocks.push({
type: 'tool_use',
id: tc.id,
name: tc.function.name,
input: args,
});
}
}
rawMessages.push({
role: 'assistant',
content: blocks.length > 0 ? blocks : (typeof contentBlocks === 'string' ? contentBlocks : ''),
});
break;
}
case 'tool': {
rawMessages.push({
role: 'user',
content: [{
type: 'tool_result',
tool_use_id: msg.tool_call_id,
content: extractOpenAIContent(msg),
}] as AnthropicContentBlock[],
});
break;
}
}
}
// 合并连续同角色消息(Anthropic API 要求 user/assistant 严格交替)
const messages = mergeConsecutiveRoles(rawMessages);
// 转换工具定义:支持 OpenAI 标准格式和 Cursor 扁平格式
const tools: AnthropicTool[] | undefined = body.tools?.map((t: OpenAITool | Record<string, unknown>) => {
// Cursor IDE 可能发送扁平格式:{ name, description, input_schema }
if ('function' in t && t.function) {
const fn = (t as OpenAITool).function;
return {
name: fn.name,
description: fn.description,
input_schema: fn.parameters || { type: 'object', properties: {} },
};
}
// Cursor 扁平格式
const flat = t as Record<string, unknown>;
return {
name: (flat.name as string) || '',
description: flat.description as string | undefined,
input_schema: (flat.input_schema as Record<string, unknown>) || { type: 'object', properties: {} },
};
});
return {
model: body.model,
messages,
max_tokens: Math.max(body.max_tokens || body.max_completion_tokens || 8192, 8192),
stream: body.stream,
system: systemPrompt,
tools,
temperature: body.temperature,
top_p: body.top_p,
stop_sequences: body.stop
? (Array.isArray(body.stop) ? body.stop : [body.stop])
: undefined,
};
}
/**
* 合并连续同角色的消息(Anthropic API 要求角色严格交替)
*/
function mergeConsecutiveRoles(messages: AnthropicMessage[]): AnthropicMessage[] {
if (messages.length <= 1) return messages;
const merged: AnthropicMessage[] = [];
for (const msg of messages) {
const last = merged[merged.length - 1];
if (last && last.role === msg.role) {
// 合并 content
const lastBlocks = toBlocks(last.content);
const newBlocks = toBlocks(msg.content);
last.content = [...lastBlocks, ...newBlocks];
} else {
merged.push({ ...msg });
}
}
return merged;
}
/**
* 将 content 统一转为 AnthropicContentBlock 数组
*/
function toBlocks(content: string | AnthropicContentBlock[]): AnthropicContentBlock[] {
if (typeof content === 'string') {
return content ? [{ type: 'text', text: content }] : [];
}
return content || [];
}
/**
* 从 OpenAI 消息中提取文本或多模态内容块
*/
function extractOpenAIContentBlocks(msg: OpenAIMessage): string | AnthropicContentBlock[] {
if (msg.content === null || msg.content === undefined) return '';
if (typeof msg.content === 'string') return msg.content;
if (Array.isArray(msg.content)) {
const blocks: AnthropicContentBlock[] = [];
for (const p of msg.content as (OpenAIContentPart | Record<string, unknown>)[]) {
if (p.type === 'text' && (p as OpenAIContentPart).text) {
blocks.push({ type: 'text', text: (p as OpenAIContentPart).text! });
} else if (p.type === 'image_url' && (p as OpenAIContentPart).image_url?.url) {
const url = (p as OpenAIContentPart).image_url!.url;
if (url.startsWith('data:')) {
const match = url.match(/^data:([^;]+);base64,(.+)$/);
if (match) {
blocks.push({
type: 'image',
source: { type: 'base64', media_type: match[1], data: match[2] }
});
}
} else {
blocks.push({
type: 'image',
source: { type: 'url', media_type: 'image/jpeg', data: url }
});
}
} else if (p.type === 'tool_use') {
// Anthropic 风格 tool_use 块直接透传
blocks.push(p as unknown as AnthropicContentBlock);
} else if (p.type === 'tool_result') {
// Anthropic 风格 tool_result 块直接透传
blocks.push(p as unknown as AnthropicContentBlock);
}
}
return blocks.length > 0 ? blocks : '';
}
return String(msg.content);
}
/**
* 仅提取纯文本(用于系统提示词和旧行为)
*/
function extractOpenAIContent(msg: OpenAIMessage): string {
const blocks = extractOpenAIContentBlocks(msg);
if (typeof blocks === 'string') return blocks;
return blocks.filter(b => b.type === 'text').map(b => b.text).join('\n');
}
// ==================== 主处理入口 ====================
export async function handleOpenAIChatCompletions(req: Request, res: Response): Promise<void> {
const body = req.body as OpenAIChatRequest;
console.log(`[OpenAI] 收到请求: model=${body.model}, messages=${body.messages?.length}, stream=${body.stream}, tools=${body.tools?.length ?? 0}`);
try {
// Step 1: OpenAI → Anthropic 格式
const anthropicReq = convertToAnthropicRequest(body);
// 注意:图片预处理已移入 convertToCursorRequest → preprocessImages() 统一处理
// Step 1.6: 身份探针拦截(复用 Anthropic handler 的逻辑)
if (isIdentityProbe(anthropicReq)) {
console.log(`[OpenAI] 拦截到身份探针,返回模拟响应`);
const mockText = "I am Claude, an advanced AI programming assistant created by Anthropic. I am ready to help you write code, debug, and answer your technical questions. Please let me know what we should work on!";
if (body.stream) {
return handleOpenAIMockStream(res, body, mockText);
} else {
return handleOpenAIMockNonStream(res, body, mockText);
}
}
// Step 2: Anthropic → Cursor 格式(复用现有管道)
const cursorReq = await convertToCursorRequest(anthropicReq);
if (body.stream) {
await handleOpenAIStream(res, cursorReq, body, anthropicReq);
} else {
await handleOpenAINonStream(res, cursorReq, body, anthropicReq);
}
} catch (err: unknown) {
const message = err instanceof Error ? err.message : String(err);
console.error(`[OpenAI] 请求处理失败:`, message);
res.status(500).json({
error: {
message,
type: 'server_error',
code: 'internal_error',
},
});
}
}
// ==================== 身份探针模拟响应 ====================
function handleOpenAIMockStream(res: Response, body: OpenAIChatRequest, mockText: string): void {
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
'X-Accel-Buffering': 'no',
});
const id = chatId();
const created = Math.floor(Date.now() / 1000);
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model: body.model,
choices: [{ index: 0, delta: { role: 'assistant', content: mockText }, finish_reason: null }],
});
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model: body.model,
choices: [{ index: 0, delta: {}, finish_reason: 'stop' }],
});
res.write('data: [DONE]\n\n');
res.end();
}
function handleOpenAIMockNonStream(res: Response, body: OpenAIChatRequest, mockText: string): void {
res.json({
id: chatId(),
object: 'chat.completion',
created: Math.floor(Date.now() / 1000),
model: body.model,
choices: [{
index: 0,
message: { role: 'assistant', content: mockText },
finish_reason: 'stop',
}],
usage: { prompt_tokens: 15, completion_tokens: 35, total_tokens: 50 },
});
}
// ==================== 流式处理(OpenAI SSE 格式) ====================
async function handleOpenAIStream(
res: Response,
cursorReq: CursorChatRequest,
body: OpenAIChatRequest,
anthropicReq: AnthropicRequest,
): Promise<void> {
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
'X-Accel-Buffering': 'no',
});
const id = chatId();
const created = Math.floor(Date.now() / 1000);
const model = body.model;
const hasTools = (body.tools?.length ?? 0) > 0;
// 发送 role delta
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: { role: 'assistant', content: '' },
finish_reason: null,
}],
});
let fullResponse = '';
let sentText = '';
let activeCursorReq = cursorReq;
let retryCount = 0;
// 统一缓冲模式:先缓冲全部响应,再检测拒绝和处理
const executeStream = async () => {
fullResponse = '';
await sendCursorRequest(activeCursorReq, (event: CursorSSEEvent) => {
if (event.type !== 'text-delta' || !event.delta) return;
fullResponse += event.delta;
});
};
try {
await executeStream();
console.log(`[OpenAI] 原始响应 (${fullResponse.length} chars, tools=${hasTools}): ${fullResponse.substring(0, 200)}${fullResponse.length > 200 ? '...' : ''}`);
// 拒绝检测 + 自动重试(工具模式和非工具模式均生效)
const shouldRetryRefusal = () => {
if (!isRefusal(fullResponse)) return false;
if (hasTools && hasToolCalls(fullResponse)) return false;
return true;
};
while (shouldRetryRefusal() && retryCount < MAX_REFUSAL_RETRIES) {
retryCount++;
console.log(`[OpenAI] 检测到拒绝(第${retryCount}次),自动重试...原始: ${fullResponse.substring(0, 100)}`);
const retryBody = buildRetryRequest(anthropicReq, retryCount - 1);
activeCursorReq = await convertToCursorRequest(retryBody);
await executeStream();
}
if (shouldRetryRefusal()) {
if (!hasTools) {
if (isToolCapabilityQuestion(anthropicReq)) {
console.log(`[OpenAI] 工具能力询问被拒绝,返回 Claude 能力描述`);
fullResponse = CLAUDE_TOOLS_RESPONSE;
} else {
console.log(`[OpenAI] 重试${MAX_REFUSAL_RETRIES}次后仍被拒绝,返回 Claude 身份回复`);
fullResponse = CLAUDE_IDENTITY_RESPONSE;
}
} else {
console.log(`[OpenAI] 工具模式下拒绝且无工具调用,引导模型输出`);
fullResponse = 'I understand the request. Let me analyze the information and proceed with the appropriate action.';
}
}
// 极短响应重试
if (hasTools && fullResponse.trim().length < 10 && retryCount < MAX_REFUSAL_RETRIES) {
retryCount++;
console.log(`[OpenAI] 响应过短 (${fullResponse.length} chars),重试第${retryCount}次`);
activeCursorReq = await convertToCursorRequest(anthropicReq);
await executeStream();
}
let finishReason: 'stop' | 'tool_calls' = 'stop';
// ★ Thinking 提取:OpenAI 流式模式下提取 <thinking> 块并作为 reasoning_content 发送
const config = getConfig();
if (config.enableThinking && fullResponse.includes('<thinking>')) {
const extracted = extractThinking(fullResponse);
if (extracted.thinkingBlocks.length > 0) {
const reasoningContent = extracted.thinkingBlocks.map(b => b.thinking).join('\n\n');
fullResponse = extracted.cleanText;
// 发送 reasoning_content delta
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: { reasoning_content: reasoningContent },
finish_reason: null,
}],
});
}
}
if (hasTools && hasToolCalls(fullResponse)) {
const { toolCalls, cleanText } = parseToolCalls(fullResponse);
if (toolCalls.length > 0) {
finishReason = 'tool_calls';
// 发送工具调用前的残余文本(清洗后)
let cleanOutput = isRefusal(cleanText) ? '' : cleanText;
cleanOutput = sanitizeResponse(cleanOutput);
if (cleanOutput) {
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: { content: cleanOutput },
finish_reason: null,
}],
});
}
// 增量流式发送工具调用:先发 name+id,再分块发 arguments
for (let i = 0; i < toolCalls.length; i++) {
const tc = toolCalls[i];
const tcId = toolCallId();
const argsStr = JSON.stringify(tc.arguments);
// 第一帧:发送 name + id, arguments 为空
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: {
...(i === 0 ? { content: null } : {}),
tool_calls: [{
index: i,
id: tcId,
type: 'function',
function: { name: tc.name, arguments: '' },
}],
},
finish_reason: null,
}],
});
// 后续帧:分块发送 arguments (128 字节/帧)
const CHUNK_SIZE = 128;
for (let j = 0; j < argsStr.length; j += CHUNK_SIZE) {
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: {
tool_calls: [{
index: i,
function: { arguments: argsStr.slice(j, j + CHUNK_SIZE) },
}],
},
finish_reason: null,
}],
});
}
}
} else {
// 误报:发送清洗后的文本
let textToSend = fullResponse;
if (isRefusal(fullResponse)) {
textToSend = 'The previous action is unavailable. Continue using other available actions to complete the task.';
} else {
textToSend = sanitizeResponse(fullResponse);
}
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: { content: textToSend },
finish_reason: null,
}],
});
}
} else {
// 无工具模式或无工具调用 — 统一清洗后发送
const sanitized = sanitizeResponse(fullResponse);
if (sanitized) {
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: { content: sanitized },
finish_reason: null,
}],
});
}
}
// 发送完成 chunk
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: {},
finish_reason: finishReason,
}],
});
res.write('data: [DONE]\n\n');
} catch (err: unknown) {
const message = err instanceof Error ? err.message : String(err);
writeOpenAISSE(res, {
id, object: 'chat.completion.chunk', created, model,
choices: [{
index: 0,
delta: { content: `\n\n[Error: ${message}]` },
finish_reason: 'stop',
}],
});
res.write('data: [DONE]\n\n');
}
res.end();
}
// ==================== 非流式处理 ====================
async function handleOpenAINonStream(
res: Response,
cursorReq: CursorChatRequest,
body: OpenAIChatRequest,
anthropicReq: AnthropicRequest,
): Promise<void> {
let fullText = await sendCursorRequestFull(cursorReq);
const hasTools = (body.tools?.length ?? 0) > 0;
console.log(`[OpenAI] 非流式原始响应 (${fullText.length} chars, tools=${hasTools}): ${fullText.substring(0, 300)}${fullText.length > 300 ? '...' : ''}`);
// 拒绝检测 + 自动重试(工具模式和非工具模式均生效)
const shouldRetry = () => isRefusal(fullText) && !(hasTools && hasToolCalls(fullText));
if (shouldRetry()) {
for (let attempt = 0; attempt < MAX_REFUSAL_RETRIES; attempt++) {
console.log(`[OpenAI] 非流式:检测到拒绝(第${attempt + 1}次重试)...原始: ${fullText.substring(0, 100)}`);
const retryBody = buildRetryRequest(anthropicReq, attempt);
const retryCursorReq = await convertToCursorRequest(retryBody);
fullText = await sendCursorRequestFull(retryCursorReq);
if (!shouldRetry()) break;
}
if (shouldRetry()) {
if (hasTools) {
console.log(`[OpenAI] 非流式:工具模式下拒绝,引导模型输出`);
fullText = 'I understand the request. Let me analyze the information and proceed with the appropriate action.';
} else if (isToolCapabilityQuestion(anthropicReq)) {
console.log(`[OpenAI] 非流式:工具能力询问被拒绝,返回 Claude 能力描述`);
fullText = CLAUDE_TOOLS_RESPONSE;
} else {
console.log(`[OpenAI] 非流式:重试${MAX_REFUSAL_RETRIES}次后仍被拒绝,返回 Claude 身份回复`);
fullText = CLAUDE_IDENTITY_RESPONSE;
}
}
}
let content: string | null = fullText;
let toolCalls: OpenAIToolCall[] | undefined;
let finishReason: 'stop' | 'tool_calls' = 'stop';
let reasoningContent: string | undefined;
// ★ Thinking 提取:OpenAI 非流式模式下提取 <thinking> 块
const config = getConfig();
if (config.enableThinking && fullText.includes('<thinking>')) {
const extracted = extractThinking(fullText);
if (extracted.thinkingBlocks.length > 0) {
reasoningContent = extracted.thinkingBlocks.map(b => b.thinking).join('\n\n');
fullText = extracted.cleanText;
}
}
if (hasTools) {
const parsed = parseToolCalls(fullText);
if (parsed.toolCalls.length > 0) {
finishReason = 'tool_calls';
// 清洗拒绝文本
let cleanText = parsed.cleanText;
if (isRefusal(cleanText)) {
console.log(`[OpenAI] 抑制工具模式下的拒绝文本: ${cleanText.substring(0, 100)}...`);
cleanText = '';
}
content = sanitizeResponse(cleanText) || null;
toolCalls = parsed.toolCalls.map(tc => ({
id: toolCallId(),
type: 'function' as const,
function: {
name: tc.name,
arguments: JSON.stringify(tc.arguments),
},
}));
} else {
// 无工具调用,检查拒绝
if (isRefusal(fullText)) {
content = 'The previous action is unavailable. Continue using other available actions to complete the task.';
} else {
content = sanitizeResponse(fullText);
}
}
} else {
// 无工具模式:清洗响应
content = sanitizeResponse(fullText);
}
const response: OpenAIChatCompletion = {
id: chatId(),
object: 'chat.completion',
created: Math.floor(Date.now() / 1000),
model: body.model,
choices: [{
index: 0,
message: {
role: 'assistant',
content,
...(reasoningContent ? { reasoning_content: reasoningContent } : {}),
...(toolCalls ? { tool_calls: toolCalls } : {}),
},
finish_reason: finishReason,
}],
usage: {
prompt_tokens: estimateInputTokens(anthropicReq).input_tokens,
completion_tokens: Math.ceil(fullText.length / 3),
total_tokens: estimateInputTokens(anthropicReq).input_tokens + Math.ceil(fullText.length / 3),
...estimateInputTokens(anthropicReq) // Merge anthropic cache metrics for compatibility
},
};
res.json(response);
}
// ==================== 工具函数 ====================
function writeOpenAISSE(res: Response, data: OpenAIChatCompletionChunk): void {
res.write(`data: ${JSON.stringify(data)}\n\n`);
if (typeof (res as unknown as { flush: () => void }).flush === 'function') {
(res as unknown as { flush: () => void }).flush();
}
}
// ==================== /v1/responses 支持 ====================
/**
* 处理 Cursor IDE Agent 模式的 /v1/responses 请求
*
* Cursor IDE 对 GPT 模型发送 OpenAI Responses API 格式请求,
* 这里将其转换为 Chat Completions 格式后复用现有管道
*/
export async function handleOpenAIResponses(req: Request, res: Response): Promise<void> {
try {
const body = req.body;
console.log(`[OpenAI] 收到 /v1/responses 请求: model=${body.model}`);
// 将 Responses API 格式转换为 Chat Completions 格式
const chatBody = responsesToChatCompletions(body);
// 此后复用现有管道
req.body = chatBody;
return handleOpenAIChatCompletions(req, res);
} catch (err: unknown) {
const message = err instanceof Error ? err.message : String(err);
console.error(`[OpenAI] /v1/responses 处理失败:`, message);
res.status(500).json({
error: { message, type: 'server_error', code: 'internal_error' },
});
}
}
/**
* 将 OpenAI Responses API 格式转换为 Chat Completions 格式
*
* Responses API 使用 `input` 而非 `messages`,格式与 Chat Completions 不同
*/
export function responsesToChatCompletions(body: Record<string, unknown>): OpenAIChatRequest {
const messages: OpenAIMessage[] = [];
// 系统指令
if (body.instructions && typeof body.instructions === 'string') {
messages.push({ role: 'system', content: body.instructions });
}
// 转换 input
const input = body.input;
if (typeof input === 'string') {
messages.push({ role: 'user', content: input });
} else if (Array.isArray(input)) {
for (const item of input as Record<string, unknown>[]) {
// function_call_output 没有 role 字段,必须先检查 type
if (item.type === 'function_call_output') {
messages.push({
role: 'tool',
content: (item.output as string) || '',
tool_call_id: (item.call_id as string) || '',
});
continue;
}
const role = (item.role as string) || 'user';
if (role === 'system' || role === 'developer') {
const text = typeof item.content === 'string'
? item.content
: Array.isArray(item.content)
? (item.content as Array<Record<string, unknown>>).filter(b => b.type === 'input_text').map(b => b.text as string).join('\n')
: String(item.content || '');
messages.push({ role: 'system', content: text });
} else if (role === 'user') {
const content = typeof item.content === 'string'
? item.content
: Array.isArray(item.content)
? (item.content as Array<Record<string, unknown>>).filter(b => b.type === 'input_text').map(b => b.text as string).join('\n')
: String(item.content || '');
messages.push({ role: 'user', content });
} else if (role === 'assistant') {
const blocks = Array.isArray(item.content) ? item.content as Array<Record<string, unknown>> : [];
const text = blocks.filter(b => b.type === 'output_text').map(b => b.text as string).join('\n');
// 检查是否有工具调用
const toolCallBlocks = blocks.filter(b => b.type === 'function_call');
const toolCalls: OpenAIToolCall[] = toolCallBlocks.map(b => ({
id: (b.call_id as string) || toolCallId(),
type: 'function' as const,
function: {
name: (b.name as string) || '',
arguments: (b.arguments as string) || '{}',
},
}));
messages.push({
role: 'assistant',
content: text || null,
...(toolCalls.length > 0 ? { tool_calls: toolCalls } : {}),
});
}
}
}
// 转换工具定义
const tools: OpenAITool[] | undefined = Array.isArray(body.tools)
? (body.tools as Array<Record<string, unknown>>).map(t => {
if (t.type === 'function') {
return {
type: 'function' as const,
function: {
name: (t.name as string) || '',
description: t.description as string | undefined,
parameters: t.parameters as Record<string, unknown> | undefined,
},
};
}
return {
type: 'function' as const,
function: {
name: (t.name as string) || '',
description: t.description as string | undefined,
parameters: t.parameters as Record<string, unknown> | undefined,
},
};
})
: undefined;
return {
model: (body.model as string) || 'gpt-4',
messages,
stream: (body.stream as boolean) ?? true,
temperature: body.temperature as number | undefined,
max_tokens: (body.max_output_tokens as number) || 8192,
tools,
};
}
|