mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
258 lines
7.8 KiB
JavaScript
258 lines
7.8 KiB
JavaScript
import { register } from "../index.js";
|
|
import { FORMATS } from "../formats.js";
|
|
import { CLAUDE_SYSTEM_PROMPT } from "../../config/constants.js";
|
|
import { adjustMaxTokens } from "../helpers/maxTokensHelper.js";
|
|
|
|
// Convert OpenAI request to Claude format
|
|
function openaiToClaudeRequest(model, body, stream) {
|
|
// Tool name mapping for Claude OAuth (capitalizedName → originalName)
|
|
const toolNameMap = new Map();
|
|
const result = {
|
|
model: model,
|
|
max_tokens: adjustMaxTokens(body),
|
|
stream: stream
|
|
};
|
|
|
|
// Temperature
|
|
if (body.temperature !== undefined) {
|
|
result.temperature = body.temperature;
|
|
}
|
|
|
|
// Messages
|
|
result.messages = [];
|
|
const systemParts = [];
|
|
|
|
if (body.messages && Array.isArray(body.messages)) {
|
|
// Extract system messages
|
|
for (const msg of body.messages) {
|
|
if (msg.role === "system") {
|
|
systemParts.push(typeof msg.content === "string" ? msg.content : extractTextContent(msg.content));
|
|
}
|
|
}
|
|
|
|
// Filter out system messages for separate processing
|
|
const nonSystemMessages = body.messages.filter(m => m.role !== "system");
|
|
|
|
// Process messages with merging logic
|
|
// CRITICAL: tool_result must be in separate message immediately after tool_use
|
|
let currentRole = undefined;
|
|
let currentParts = [];
|
|
|
|
const flushCurrentMessage = () => {
|
|
if (currentRole && currentParts.length > 0) {
|
|
result.messages.push({ role: currentRole, content: currentParts });
|
|
currentParts = [];
|
|
}
|
|
};
|
|
|
|
for (const msg of nonSystemMessages) {
|
|
const newRole = (msg.role === "user" || msg.role === "tool") ? "user" : "assistant";
|
|
const blocks = getContentBlocksFromMessage(msg);
|
|
const hasToolUse = blocks.some(b => b.type === "tool_use");
|
|
const hasToolResult = blocks.some(b => b.type === "tool_result");
|
|
|
|
// Separate tool_result from other content
|
|
if (hasToolResult) {
|
|
const toolResultBlocks = blocks.filter(b => b.type === "tool_result");
|
|
const otherBlocks = blocks.filter(b => b.type !== "tool_result");
|
|
|
|
flushCurrentMessage();
|
|
|
|
if (toolResultBlocks.length > 0) {
|
|
result.messages.push({ role: "user", content: toolResultBlocks });
|
|
}
|
|
|
|
if (otherBlocks.length > 0) {
|
|
currentRole = newRole;
|
|
currentParts.push(...otherBlocks);
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (currentRole !== newRole) {
|
|
flushCurrentMessage();
|
|
currentRole = newRole;
|
|
}
|
|
|
|
currentParts.push(...blocks);
|
|
|
|
if (hasToolUse) {
|
|
flushCurrentMessage();
|
|
}
|
|
}
|
|
|
|
flushCurrentMessage();
|
|
|
|
// Add cache_control to last assistant message
|
|
for (let i = result.messages.length - 1; i >= 0; i--) {
|
|
const message = result.messages[i];
|
|
if (message.role === "assistant" && Array.isArray(message.content) && message.content.length > 0) {
|
|
const lastBlock = message.content[message.content.length - 1];
|
|
if (lastBlock) {
|
|
lastBlock.cache_control = { type: "ephemeral" };
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// System with Claude Code prompt and cache_control
|
|
const claudeCodePrompt = { type: "text", text: CLAUDE_SYSTEM_PROMPT };
|
|
|
|
if (systemParts.length > 0) {
|
|
const systemText = systemParts.join("\n");
|
|
result.system = [
|
|
claudeCodePrompt,
|
|
{ type: "text", text: systemText, cache_control: { type: "ephemeral", ttl: "1h" } }
|
|
];
|
|
} else {
|
|
result.system = [claudeCodePrompt];
|
|
}
|
|
|
|
// Tools - convert from OpenAI format to Claude format
|
|
if (body.tools && Array.isArray(body.tools)) {
|
|
result.tools = body.tools.map(tool => {
|
|
const toolData = tool.type === "function" && tool.function ? tool.function : tool;
|
|
const originalName = toolData.name;
|
|
|
|
// Claude requires capitalized tool names
|
|
const toolName = originalName.charAt(0).toUpperCase() + originalName.slice(1);
|
|
|
|
// Store mapping for response translation
|
|
if (toolName !== originalName) {
|
|
toolNameMap.set(toolName, originalName);
|
|
}
|
|
|
|
return {
|
|
name: toolName,
|
|
description: toolData.description || "",
|
|
input_schema: toolData.parameters || toolData.input_schema || { type: "object", properties: {}, required: [] }
|
|
};
|
|
});
|
|
|
|
if (result.tools.length > 0) {
|
|
result.tools[result.tools.length - 1].cache_control = { type: "ephemeral", ttl: "1h" };
|
|
}
|
|
}
|
|
|
|
// Tool choice
|
|
if (body.tool_choice) {
|
|
result.tool_choice = convertOpenAIToolChoice(body.tool_choice);
|
|
}
|
|
|
|
// Attach toolNameMap to result for response translation
|
|
if (toolNameMap.size > 0) {
|
|
result._toolNameMap = toolNameMap;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// Get content blocks from single message
|
|
function getContentBlocksFromMessage(msg) {
|
|
const blocks = [];
|
|
|
|
if (msg.role === "tool") {
|
|
blocks.push({
|
|
type: "tool_result",
|
|
tool_use_id: msg.tool_call_id,
|
|
content: msg.content
|
|
});
|
|
} else if (msg.role === "user") {
|
|
if (typeof msg.content === "string") {
|
|
if (msg.content) {
|
|
blocks.push({ type: "text", text: msg.content });
|
|
}
|
|
} else if (Array.isArray(msg.content)) {
|
|
for (const part of msg.content) {
|
|
if (part.type === "text" && part.text) {
|
|
blocks.push({ type: "text", text: part.text });
|
|
} else if (part.type === "tool_result") {
|
|
blocks.push({
|
|
type: "tool_result",
|
|
tool_use_id: part.tool_use_id,
|
|
content: part.content,
|
|
...(part.is_error && { is_error: part.is_error })
|
|
});
|
|
} else if (part.type === "image_url") {
|
|
const url = part.image_url.url;
|
|
const match = url.match(/^data:([^;]+);base64,(.+)$/);
|
|
if (match) {
|
|
blocks.push({
|
|
type: "image",
|
|
source: { type: "base64", media_type: match[1], data: match[2] }
|
|
});
|
|
}
|
|
} else if (part.type === "image" && part.source) {
|
|
blocks.push({ type: "image", source: part.source });
|
|
}
|
|
}
|
|
}
|
|
} else if (msg.role === "assistant") {
|
|
if (Array.isArray(msg.content)) {
|
|
for (const part of msg.content) {
|
|
if (part.type === "text" && part.text) {
|
|
blocks.push({ type: "text", text: part.text });
|
|
} else if (part.type === "tool_use") {
|
|
blocks.push({ type: "tool_use", id: part.id, name: part.name, input: part.input });
|
|
}
|
|
}
|
|
} else if (msg.content) {
|
|
const text = typeof msg.content === "string" ? msg.content : extractTextContent(msg.content);
|
|
if (text) {
|
|
blocks.push({ type: "text", text });
|
|
}
|
|
}
|
|
|
|
if (msg.tool_calls && Array.isArray(msg.tool_calls)) {
|
|
for (const tc of msg.tool_calls) {
|
|
if (tc.type === "function") {
|
|
blocks.push({
|
|
type: "tool_use",
|
|
id: tc.id,
|
|
name: tc.function.name,
|
|
input: tryParseJSON(tc.function.arguments)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return blocks;
|
|
}
|
|
|
|
// Convert OpenAI tool choice to Claude format
|
|
function convertOpenAIToolChoice(choice) {
|
|
if (!choice) return { type: "auto" };
|
|
if (typeof choice === "object" && choice.type) return choice;
|
|
if (choice === "auto" || choice === "none") return { type: "auto" };
|
|
if (choice === "required") return { type: "any" };
|
|
if (typeof choice === "object" && choice.function) {
|
|
return { type: "tool", name: choice.function.name };
|
|
}
|
|
return { type: "auto" };
|
|
}
|
|
|
|
// Extract text from content
|
|
function extractTextContent(content) {
|
|
if (typeof content === "string") return content;
|
|
if (Array.isArray(content)) {
|
|
return content.filter(c => c.type === "text").map(c => c.text).join("\n");
|
|
}
|
|
return "";
|
|
}
|
|
|
|
// Try parse JSON
|
|
function tryParseJSON(str) {
|
|
if (typeof str !== "string") return str;
|
|
try {
|
|
return JSON.parse(str);
|
|
} catch {
|
|
return str;
|
|
}
|
|
}
|
|
|
|
// Register
|
|
register(FORMATS.OPENAI, FORMATS.CLAUDE, openaiToClaudeRequest, null);
|
|
|