mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-11 06:30:21 +00:00
* feat(relaykit): preserve hosted tools across conversions - add protocol-neutral hosted-tool DTOs, conversion metadata, and loss policies - bridge citations, grounding metadata, and hosted-tool stream lifecycles - document the public conversion behavior and channel policy controls * refactor(relaykit): normalize reasoning and thinking intent - centralize provider-neutral reasoning intent, effort, and budget mappings - parse model suffixes at the host entry boundary while preserving provider-owned tails - keep adaptive Claude thinking and explicit zero-token compatibility consistent * fix(billing): preserve authoritative usage across relay hops - carry native BillingUsage sidecars through direct and streamed protocol bridges - merge partial and terminal usage monotonically with safe fallback settlement - retain cache metadata, penultimate usage, and per-call Gemini tool surcharges * feat(relay): bridge Responses with Claude and Gemini protocols - add direct request, response, and stream converters across supported relay formats - expose Claude count_tokens and Chat-to-Responses compatibility endpoints - carry conversion diagnostics through the host while retaining the curated public goldens * fix(relay): wire relaykit conversions into host channels - connect handlers, adaptors, and channel settings to the standalone conversion layer - keep model mapping, pricing identity, retries, and provider-specific suffix behavior aligned - ignore local audit artifacts and retain focused public regression coverage
331 lines
9.8 KiB
Go
331 lines
9.8 KiB
Go
package oairesponses
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"context"
|
|
"github.com/QuantumNous/new-api/relaykit/dto"
|
|
"github.com/QuantumNous/new-api/relaykit/relayconvert/convmeta"
|
|
relaymedia "github.com/QuantumNous/new-api/relaykit/relayconvert/internal/media"
|
|
sharedgemini "github.com/QuantumNous/new-api/relaykit/relayconvert/internal/shared/gemini"
|
|
kitutil "github.com/QuantumNous/new-api/relaykit/relayconvert/kitutil"
|
|
"github.com/QuantumNous/new-api/relaykit/relayconvert/reasoning"
|
|
)
|
|
|
|
func convertOpenAIResponsesRequestToGeminiChat(c context.Context, info convmeta.Meta, request any) (any, error) {
|
|
responsesRequest, err := OpenAIResponsesRequestFromAny(request)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
prepared, err := PrepareOpenAIResponsesRequest(*responsesRequest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return OpenAIResponsesRequestToGeminiChat(c, &prepared, info)
|
|
}
|
|
|
|
func OpenAIResponsesRequestToGeminiChat(c context.Context, req *dto.OpenAIResponsesRequest, info convmeta.Meta) (*dto.GeminiChatRequest, error) {
|
|
opts := convmeta.OptionsOf(info)
|
|
if req == nil {
|
|
return nil, fmt.Errorf("request is nil")
|
|
}
|
|
if req.Model == "" {
|
|
return nil, fmt.Errorf("model is required")
|
|
}
|
|
if err := ValidateRequestChatUnsupportedFields(req); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
geminiRequest := &dto.GeminiChatRequest{
|
|
GenerationConfig: dto.GeminiChatGenerationConfig{
|
|
Temperature: req.Temperature,
|
|
},
|
|
}
|
|
if req.TopP != nil {
|
|
geminiRequest.GenerationConfig.TopP = kitutil.GetPointer(*req.TopP)
|
|
}
|
|
if req.MaxOutputTokens != nil {
|
|
geminiRequest.GenerationConfig.MaxOutputTokens = kitutil.GetPointer(*req.MaxOutputTokens)
|
|
}
|
|
|
|
upstreamModelName := req.Model
|
|
if modelName := convmeta.UpstreamModelName(info); modelName != "" {
|
|
upstreamModelName = modelName
|
|
}
|
|
if opts.Gemini.SupportsImagineModel(upstreamModelName) {
|
|
geminiRequest.GenerationConfig.ResponseModalities = []string{"TEXT", "IMAGE"}
|
|
}
|
|
if err := applyResponsesTextToGemini(req.Text, geminiRequest); err != nil {
|
|
return nil, err
|
|
}
|
|
reasoningIntent, err := reasoning.FromOpenAIResponses(req)
|
|
if err != nil {
|
|
return nil, reasoning.AsClientError(err)
|
|
}
|
|
var reasoningPivot dto.GeneralOpenAIRequest
|
|
if err := reasoning.ApplyToOpenAIChat(&reasoningPivot, reasoningIntent); err != nil {
|
|
return nil, reasoning.AsClientError(err)
|
|
}
|
|
reasoningPivot.Model = req.Model
|
|
reasoningPivot.MaxCompletionTokens = req.MaxOutputTokens
|
|
if err := sharedgemini.ApplyThinkingConfig(geminiRequest, info, reasoningPivot); err != nil {
|
|
return nil, reasoning.AsClientError(err)
|
|
}
|
|
|
|
var safetySettings []dto.GeminiChatSafetySettings
|
|
for _, category := range sharedgemini.SafetySettingCategories {
|
|
threshold := opts.Gemini.SafetySettingFor(category)
|
|
if threshold == "" {
|
|
continue
|
|
}
|
|
safetySettings = append(safetySettings, dto.GeminiChatSafetySettings{
|
|
Category: category,
|
|
Threshold: threshold,
|
|
})
|
|
}
|
|
if len(safetySettings) > 0 {
|
|
geminiRequest.SafetySettings = safetySettings
|
|
}
|
|
|
|
functions, err := RequestFunctionDeclarations(req.Tools)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for i := range functions {
|
|
if params, ok := functions[i].Parameters.(map[string]interface{}); ok {
|
|
if props, hasProps := params["properties"].(map[string]interface{}); hasProps && len(props) == 0 {
|
|
functions[i].Parameters = nil
|
|
continue
|
|
}
|
|
}
|
|
functions[i].Parameters = sharedgemini.CleanFunctionParameters(functions[i].Parameters)
|
|
}
|
|
if len(functions) > 0 {
|
|
geminiRequest.SetTools([]dto.GeminiChatTool{
|
|
{FunctionDeclarations: functions},
|
|
})
|
|
}
|
|
|
|
toolChoice, err := RequestToolChoiceToChat(req.ToolChoice)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if toolChoice != nil {
|
|
geminiRequest.ToolConfig = sharedgemini.OpenAIToolChoiceToConfig(toolChoice)
|
|
}
|
|
|
|
systemTexts := make([]string, 0)
|
|
if RawJSONPresent(req.Instructions) {
|
|
instructions, err := JSONString(req.Instructions)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("invalid instructions: %w", err)
|
|
}
|
|
if strings.TrimSpace(instructions) != "" {
|
|
systemTexts = append(systemTexts, instructions)
|
|
}
|
|
}
|
|
|
|
inputItems, err := InputItems(req.Input)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
callNames := make(map[string]string)
|
|
for _, item := range inputItems {
|
|
itemType := strings.TrimSpace(kitutil.Interface2String(item["type"]))
|
|
switch itemType {
|
|
case ResponsesInputTypeFunctionCall:
|
|
part, callID, err := responsesFunctionCallItemToGeminiPart(item)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
sharedgemini.AttachFunctionCallThoughtSignature(opts, &part)
|
|
if callID != "" {
|
|
callNames[callID] = part.FunctionCall.FunctionName
|
|
}
|
|
appendGeminiContentPart(geminiRequest, "model", part)
|
|
case ResponsesInputTypeFunctionCallOutput:
|
|
part, err := responsesFunctionOutputItemToGeminiPart(item, callNames)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
appendGeminiContentPart(geminiRequest, "user", part)
|
|
default:
|
|
role := responsesGeminiRole(item)
|
|
parts, err := responsesInputContentToGeminiParts(c, item["content"])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if role == "system" {
|
|
for _, part := range parts {
|
|
if part.Text != "" {
|
|
systemTexts = append(systemTexts, part.Text)
|
|
}
|
|
}
|
|
continue
|
|
}
|
|
if len(parts) > 0 {
|
|
geminiRequest.Contents = append(geminiRequest.Contents, dto.GeminiChatContent{
|
|
Role: role,
|
|
Parts: parts,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(systemTexts) > 0 {
|
|
geminiRequest.SystemInstructions = &dto.GeminiChatContent{
|
|
Parts: []dto.GeminiPart{{Text: strings.Join(systemTexts, "\n")}},
|
|
}
|
|
}
|
|
|
|
return geminiRequest, nil
|
|
}
|
|
|
|
func applyResponsesTextToGemini(raw []byte, geminiRequest *dto.GeminiChatRequest) error {
|
|
responseFormat, err := RequestTextToChatResponseFormat(raw)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if responseFormat == nil || (responseFormat.Type != "json_schema" && responseFormat.Type != "json_object") {
|
|
return nil
|
|
}
|
|
|
|
geminiRequest.GenerationConfig.ResponseMimeType = "application/json"
|
|
if len(responseFormat.JsonSchema) == 0 {
|
|
return nil
|
|
}
|
|
|
|
var jsonSchema dto.FormatJsonSchema
|
|
if err := kitutil.Unmarshal(responseFormat.JsonSchema, &jsonSchema); err != nil {
|
|
return nil
|
|
}
|
|
geminiRequest.GenerationConfig.ResponseSchema = sharedgemini.RemoveAdditionalProperties(jsonSchema.Schema, 0)
|
|
return nil
|
|
}
|
|
|
|
func responsesInputContentToGeminiParts(c context.Context, content any) ([]dto.GeminiPart, error) {
|
|
contentParts, err := ContentParts(content)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
parts := make([]dto.GeminiPart, 0, len(contentParts))
|
|
for _, contentPart := range contentParts {
|
|
nextParts, err := responsesContentPartToGeminiParts(c, contentPart)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
parts = append(parts, nextParts...)
|
|
}
|
|
return parts, nil
|
|
}
|
|
|
|
func responsesContentPartToGeminiParts(c context.Context, part map[string]any) ([]dto.GeminiPart, error) {
|
|
partType := strings.TrimSpace(kitutil.Interface2String(part["type"]))
|
|
switch partType {
|
|
case "input_text", "output_text", "text":
|
|
text := kitutil.Interface2String(part["text"])
|
|
if text == "" {
|
|
return nil, nil
|
|
}
|
|
return []dto.GeminiPart{{Text: text}}, nil
|
|
case "input_image", "input_file", "input_audio", "input_video":
|
|
source := ContentPartToFileSource(part)
|
|
if source == nil {
|
|
return nil, nil
|
|
}
|
|
base64Data, mimeType, err := relaymedia.ResolveBase64Data(c, source, "formatting Responses input for Gemini")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("get file data from '%s' failed: %w", source.GetIdentifier(), err)
|
|
}
|
|
if _, ok := sharedgemini.SupportedMimeTypes[strings.ToLower(mimeType)]; !ok {
|
|
return nil, fmt.Errorf("mime type is not supported by Gemini: '%s', url: '%s', supported types are: %v", mimeType, source.GetIdentifier(), sharedgemini.SupportedMimeTypesList())
|
|
}
|
|
return []dto.GeminiPart{
|
|
{
|
|
InlineData: &dto.GeminiInlineData{
|
|
MimeType: mimeType,
|
|
Data: base64Data,
|
|
},
|
|
},
|
|
}, nil
|
|
default:
|
|
return nil, nil
|
|
}
|
|
}
|
|
|
|
func responsesFunctionCallItemToGeminiPart(item map[string]any) (dto.GeminiPart, string, error) {
|
|
name := strings.TrimSpace(kitutil.Interface2String(item["name"]))
|
|
if name == "" {
|
|
return dto.GeminiPart{}, "", fmt.Errorf("function_call item is missing name")
|
|
}
|
|
callID := CallID(item)
|
|
return dto.GeminiPart{
|
|
FunctionCall: &dto.FunctionCall{
|
|
ID: callID,
|
|
FunctionName: name,
|
|
Arguments: ObjectValue(item["arguments"], "arguments"),
|
|
},
|
|
}, callID, nil
|
|
}
|
|
|
|
func responsesFunctionOutputItemToGeminiPart(item map[string]any, callNames map[string]string) (dto.GeminiPart, error) {
|
|
callID := CallID(item)
|
|
name := strings.TrimSpace(kitutil.Interface2String(item["name"]))
|
|
if name == "" {
|
|
name = callNames[callID]
|
|
}
|
|
response := &dto.GeminiFunctionResponse{
|
|
Name: name,
|
|
Response: GeminiResponseMap(item["output"]),
|
|
}
|
|
if callID != "" {
|
|
id, err := kitutil.Marshal(callID)
|
|
if err != nil {
|
|
return dto.GeminiPart{}, fmt.Errorf("failed to marshal function response ID: %w", err)
|
|
}
|
|
response.ID = id
|
|
}
|
|
return dto.GeminiPart{
|
|
FunctionResponse: response,
|
|
}, nil
|
|
}
|
|
|
|
func appendGeminiContentPart(req *dto.GeminiChatRequest, role string, part dto.GeminiPart) {
|
|
if len(req.Contents) > 0 && req.Contents[len(req.Contents)-1].Role == role {
|
|
if role == "model" && part.FunctionCall != nil {
|
|
parts := req.Contents[len(req.Contents)-1].Parts
|
|
insertAt := 0
|
|
for insertAt < len(parts) && parts[insertAt].FunctionCall != nil {
|
|
insertAt++
|
|
}
|
|
parts = append(parts, dto.GeminiPart{})
|
|
copy(parts[insertAt+1:], parts[insertAt:])
|
|
parts[insertAt] = part
|
|
req.Contents[len(req.Contents)-1].Parts = parts
|
|
return
|
|
}
|
|
req.Contents[len(req.Contents)-1].Parts = append(req.Contents[len(req.Contents)-1].Parts, part)
|
|
return
|
|
}
|
|
req.Contents = append(req.Contents, dto.GeminiChatContent{
|
|
Role: role,
|
|
Parts: []dto.GeminiPart{part},
|
|
})
|
|
}
|
|
|
|
func responsesGeminiRole(item map[string]any) string {
|
|
switch strings.TrimSpace(kitutil.Interface2String(item["role"])) {
|
|
case "assistant":
|
|
return "model"
|
|
case "system", "developer":
|
|
return "system"
|
|
case "model":
|
|
return "model"
|
|
default:
|
|
return "user"
|
|
}
|
|
}
|