mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
224 lines
6.3 KiB
JavaScript
224 lines
6.3 KiB
JavaScript
import { register } from "../index.js";
|
|
import { FORMATS } from "../formats.js";
|
|
import { adjustMaxTokens } from "../helpers/maxTokensHelper.js";
|
|
|
|
// Convert Antigravity request to OpenAI format
|
|
// Antigravity body: { project, model, userAgent, requestType, requestId, request: { contents, systemInstruction, tools, toolConfig, generationConfig, sessionId } }
|
|
export function antigravityToOpenAIRequest(model, body, stream) {
|
|
const req = body.request || body;
|
|
const result = {
|
|
model: model,
|
|
messages: [],
|
|
stream: stream
|
|
};
|
|
|
|
// Generation config
|
|
if (req.generationConfig) {
|
|
const config = req.generationConfig;
|
|
if (config.maxOutputTokens) {
|
|
const tempBody = { max_tokens: config.maxOutputTokens, tools: req.tools };
|
|
result.max_tokens = adjustMaxTokens(tempBody);
|
|
}
|
|
if (config.temperature !== undefined) {
|
|
result.temperature = config.temperature;
|
|
}
|
|
if (config.topP !== undefined) {
|
|
result.top_p = config.topP;
|
|
}
|
|
if (config.topK !== undefined) {
|
|
result.top_k = config.topK;
|
|
}
|
|
|
|
// Thinking config → reasoning_effort
|
|
if (config.thinkingConfig) {
|
|
const budget = config.thinkingConfig.thinkingBudget || 0;
|
|
if (budget > 0) {
|
|
if (budget <= 2048) {
|
|
result.reasoning_effort = "low";
|
|
} else if (budget <= 16384) {
|
|
result.reasoning_effort = "medium";
|
|
} else {
|
|
result.reasoning_effort = "high";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// System instruction
|
|
if (req.systemInstruction) {
|
|
const systemText = extractText(req.systemInstruction);
|
|
if (systemText) {
|
|
result.messages.push({ role: "system", content: systemText });
|
|
}
|
|
}
|
|
|
|
// Convert contents to messages
|
|
if (req.contents && Array.isArray(req.contents)) {
|
|
for (const content of req.contents) {
|
|
const converted = convertContent(content);
|
|
if (converted) {
|
|
if (Array.isArray(converted)) {
|
|
result.messages.push(...converted);
|
|
} else {
|
|
result.messages.push(converted);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Tools
|
|
if (req.tools && Array.isArray(req.tools)) {
|
|
result.tools = [];
|
|
for (const tool of req.tools) {
|
|
if (tool.functionDeclarations) {
|
|
for (const func of tool.functionDeclarations) {
|
|
result.tools.push({
|
|
type: "function",
|
|
function: {
|
|
name: func.name,
|
|
description: func.description || "",
|
|
parameters: normalizeSchemaTypes(func.parameters) || { type: "object", properties: {} }
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// Recursively convert Antigravity schema types (OBJECT, STRING, etc.) to lowercase
|
|
function normalizeSchemaTypes(schema) {
|
|
if (!schema || typeof schema !== "object") return schema;
|
|
|
|
const result = Array.isArray(schema) ? [...schema] : { ...schema };
|
|
|
|
if (typeof result.type === "string") {
|
|
result.type = result.type.toLowerCase();
|
|
}
|
|
|
|
if (result.properties) {
|
|
const normalized = {};
|
|
for (const [key, val] of Object.entries(result.properties)) {
|
|
normalized[key] = normalizeSchemaTypes(val);
|
|
}
|
|
result.properties = normalized;
|
|
}
|
|
|
|
if (result.items) {
|
|
result.items = normalizeSchemaTypes(result.items);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// Convert Antigravity content to OpenAI message
|
|
// Handles: text, thought, thoughtSignature, functionCall, functionResponse, inlineData
|
|
function convertContent(content) {
|
|
const role = content.role === "model" ? "assistant" : content.role === "user" ? "user" : content.role;
|
|
|
|
if (!content.parts || !Array.isArray(content.parts)) {
|
|
return null;
|
|
}
|
|
|
|
const textParts = [];
|
|
const toolCalls = [];
|
|
const toolResults = [];
|
|
let reasoningContent = "";
|
|
|
|
for (const part of content.parts) {
|
|
// Thinking content (thought: true)
|
|
if (part.thought === true && part.text) {
|
|
reasoningContent += part.text;
|
|
continue;
|
|
}
|
|
|
|
// Text with thoughtSignature = regular text after thinking
|
|
if (part.thoughtSignature && part.text !== undefined) {
|
|
textParts.push({ type: "text", text: part.text });
|
|
continue;
|
|
}
|
|
|
|
// Regular text
|
|
if (part.text !== undefined) {
|
|
textParts.push({ type: "text", text: part.text });
|
|
}
|
|
|
|
// Inline data (images)
|
|
if (part.inlineData) {
|
|
textParts.push({
|
|
type: "image_url",
|
|
image_url: {
|
|
url: `data:${part.inlineData.mimeType};base64,${part.inlineData.data}`
|
|
}
|
|
});
|
|
}
|
|
|
|
// Function call
|
|
if (part.functionCall) {
|
|
toolCalls.push({
|
|
id: part.functionCall.id || `call_${Date.now()}_${Math.random().toString(36).slice(2, 8)}`,
|
|
type: "function",
|
|
function: {
|
|
name: part.functionCall.name,
|
|
arguments: JSON.stringify(part.functionCall.args || {})
|
|
}
|
|
});
|
|
}
|
|
|
|
// Function response → collect all, each becomes a separate tool message
|
|
if (part.functionResponse) {
|
|
toolResults.push({
|
|
role: "tool",
|
|
tool_call_id: part.functionResponse.id || part.functionResponse.name,
|
|
content: JSON.stringify(part.functionResponse.response?.result || part.functionResponse.response || {})
|
|
});
|
|
}
|
|
}
|
|
|
|
// Content with only functionResponses → return array of tool messages
|
|
if (toolResults.length > 0) {
|
|
return toolResults;
|
|
}
|
|
|
|
// Assistant with tool calls
|
|
if (toolCalls.length > 0) {
|
|
const msg = { role: "assistant" };
|
|
if (textParts.length > 0) {
|
|
msg.content = textParts.length === 1 && textParts[0].type === "text" ? textParts[0].text : textParts;
|
|
}
|
|
if (reasoningContent) {
|
|
msg.reasoning_content = reasoningContent;
|
|
}
|
|
msg.tool_calls = toolCalls;
|
|
return msg;
|
|
}
|
|
|
|
// Regular message
|
|
if (textParts.length > 0 || reasoningContent) {
|
|
const msg = { role };
|
|
if (textParts.length > 0) {
|
|
msg.content = textParts.length === 1 && textParts[0].type === "text" ? textParts[0].text : textParts;
|
|
}
|
|
if (reasoningContent) {
|
|
msg.reasoning_content = reasoningContent;
|
|
}
|
|
return msg;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// Extract text from systemInstruction
|
|
function extractText(instruction) {
|
|
if (typeof instruction === "string") return instruction;
|
|
if (instruction.parts && Array.isArray(instruction.parts)) {
|
|
return instruction.parts.map(p => p.text || "").join("");
|
|
}
|
|
return "";
|
|
}
|
|
|
|
// Register
|
|
register(FORMATS.ANTIGRAVITY, FORMATS.OPENAI, antigravityToOpenAIRequest, null);
|