您提供的代码正在处理不同API的认证和路径映射,现在需要兼容Gemini API的调用格式。查看您提供的curl请求,Gemini API有以下特点:
?key=
)进行身份验证,而不是Authorization头:generateContent
这样的动作后缀system_instruction
和contents
的请求体结构在generativelanguage.googleapis.com
的case中添加对Gemini API的处理:
case "generativelanguage.googleapis.com":
// 检查URL中是否已有key参数
queryParams := req.URL.Query()
if queryParams.Get("key") == "" {
// 没有key参数时添加到查询字符串
queryParams.Set("key", key.SecretKey)
req.URL.RawQuery = queryParams.Encode()
}
// 处理路径映射
if newPath, exists := conf.PathMappers[4][req.URL.Path]; exists {
req.URL.Path = newPath
} else if strings.Contains(req.URL.Path, ":generateContent") {
// 特别处理generateContent端点
newPath := normalizePath(req.URL.Path)
conf.PathMappers[4][req.URL.Path] = newPath
req.URL.Path = newPath
} else if strings.Contains(req.URL.Path, "chat") {
newPath := normalizePath(req.URL.Path)
conf.PathMappers[4][req.URL.Path] = newPath
req.URL.Path = newPath
}
// 某些Gemini端点可能还是需要Authorization头
if !strings.Contains(req.URL.RawQuery, "key=") {
req.Header.Set("Authorization", "Bearer "+key.SecretKey)
}
:generateContent
路径模式的处理如果您的应用需要对Gemini API请求/响应格式进行转换以匹配内部格式,可能还需要添加中间件处理逻辑。