Files
new-api/relay/relay-image.go

183 lines
5.9 KiB
Go
Raw Normal View History

2024-02-29 01:08:18 +08:00
package relay
2023-06-19 10:28:55 +08:00
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"github.com/gin-gonic/gin"
2023-06-19 10:28:55 +08:00
"io"
"net/http"
"one-api/common"
2024-02-29 01:08:18 +08:00
"one-api/dto"
"one-api/model"
2024-02-29 16:21:25 +08:00
relaycommon "one-api/relay/common"
"one-api/relay/helper"
2024-02-29 16:21:25 +08:00
"one-api/service"
"one-api/setting"
2023-11-09 17:08:32 +08:00
"strings"
2023-06-19 10:28:55 +08:00
)
2024-07-17 23:50:37 +08:00
func getAndValidImageRequest(c *gin.Context, info *relaycommon.RelayInfo) (*dto.ImageRequest, error) {
imageRequest := &dto.ImageRequest{}
err := common.UnmarshalBodyReusable(c, imageRequest)
2024-03-13 22:30:10 +08:00
if err != nil {
2024-07-17 23:50:37 +08:00
return nil, err
}
2024-07-17 23:50:37 +08:00
if imageRequest.Prompt == "" {
return nil, errors.New("prompt is required")
2023-11-09 17:08:32 +08:00
}
2024-07-17 23:50:37 +08:00
if strings.Contains(imageRequest.Size, "×") {
return nil, errors.New("size an unexpected error occurred in the parameter, please use 'x' instead of the multiplication sign '×'")
2023-11-10 17:08:33 +08:00
}
2023-11-27 14:24:28 +08:00
if imageRequest.N == 0 {
imageRequest.N = 1
}
2024-07-17 23:50:37 +08:00
if imageRequest.Size == "" {
imageRequest.Size = "1024x1024"
}
2024-07-17 23:50:37 +08:00
if imageRequest.Model == "" {
imageRequest.Model = "dall-e-2"
2024-05-23 23:59:55 +08:00
}
2024-08-24 13:36:41 +08:00
// Not "256x256", "512x512", or "1024x1024"
2023-11-10 17:08:33 +08:00
if imageRequest.Model == "dall-e-2" || imageRequest.Model == "dall-e" {
if imageRequest.Size != "" && imageRequest.Size != "256x256" && imageRequest.Size != "512x512" && imageRequest.Size != "1024x1024" {
2024-07-17 23:50:37 +08:00
return nil, errors.New("size must be one of 256x256, 512x512, or 1024x1024, dall-e-3 1024x1792 or 1792x1024")
2023-11-10 17:08:33 +08:00
}
} else if imageRequest.Model == "dall-e-3" {
if imageRequest.Size != "" && imageRequest.Size != "1024x1024" && imageRequest.Size != "1024x1792" && imageRequest.Size != "1792x1024" {
2024-07-17 23:50:37 +08:00
return nil, errors.New("size must be one of 256x256, 512x512, or 1024x1024, dall-e-3 1024x1792 or 1792x1024")
2023-11-10 17:08:33 +08:00
}
2024-08-24 13:36:41 +08:00
if imageRequest.Quality == "" {
imageRequest.Quality = "standard"
}
2024-07-17 23:50:37 +08:00
//if imageRequest.N != 1 {
// return nil, errors.New("n must be 1")
//}
}
// N should between 1 and 10
//if imageRequest.N != 0 && (imageRequest.N < 1 || imageRequest.N > 10) {
// return service.OpenAIErrorWrapper(errors.New("n must be between 1 and 10"), "invalid_field_value", http.StatusBadRequest)
//}
if setting.ShouldCheckPromptSensitive() {
words, err := service.CheckSensitiveInput(imageRequest.Prompt)
2024-07-17 23:50:37 +08:00
if err != nil {
common.LogWarn(c, fmt.Sprintf("user sensitive words detected: %s", strings.Join(words, ",")))
2024-07-17 23:50:37 +08:00
return nil, err
2023-12-01 01:29:13 +08:00
}
}
2024-07-17 23:50:37 +08:00
return imageRequest, nil
}
func ImageHelper(c *gin.Context) *dto.OpenAIErrorWithStatusCode {
2024-07-17 23:50:37 +08:00
relayInfo := relaycommon.GenRelayInfo(c)
imageRequest, err := getAndValidImageRequest(c, relayInfo)
if err != nil {
common.LogError(c, fmt.Sprintf("getAndValidImageRequest failed: %s", err.Error()))
return service.OpenAIErrorWrapper(err, "invalid_image_request", http.StatusBadRequest)
}
err = helper.ModelMappedHelper(c, relayInfo)
if err != nil {
return service.OpenAIErrorWrapperLocal(err, "model_mapped_error", http.StatusInternalServerError)
}
imageRequest.Model = relayInfo.UpstreamModelName
priceData := helper.ModelPriceHelper(c, relayInfo, 0, 0)
if !priceData.UsePrice {
// modelRatio 16 = modelPrice $0.04
// per 1 modelRatio = $0.04 / 16
priceData.ModelPrice = 0.0025 * priceData.ModelRatio
}
2024-07-17 23:50:37 +08:00
2024-12-29 16:50:26 +08:00
userQuota, err := model.GetUserQuota(relayInfo.UserId, false)
sizeRatio := 1.0
// Size
if imageRequest.Size == "256x256" {
sizeRatio = 0.4
} else if imageRequest.Size == "512x512" {
sizeRatio = 0.45
} else if imageRequest.Size == "1024x1024" {
sizeRatio = 1
2023-11-09 17:08:32 +08:00
} else if imageRequest.Size == "1024x1792" || imageRequest.Size == "1792x1024" {
sizeRatio = 2
2023-11-09 17:08:32 +08:00
}
qualityRatio := 1.0
if imageRequest.Model == "dall-e-3" && imageRequest.Quality == "hd" {
qualityRatio = 2.0
2024-05-31 15:10:01 +08:00
if imageRequest.Size == "1024x1792" || imageRequest.Size == "1792x1024" {
2023-11-09 17:08:32 +08:00
qualityRatio = 1.5
}
}
2023-11-09 17:08:32 +08:00
imageRatio := priceData.ModelPrice * sizeRatio * qualityRatio * float64(imageRequest.N)
quota := int(imageRatio * priceData.GroupRatio * common.QuotaPerUnit)
2024-03-13 22:30:10 +08:00
if userQuota-quota < 0 {
return service.OpenAIErrorWrapperLocal(fmt.Errorf("image pre-consumed quota failed, user quota: %s, need quota: %s", common.FormatQuota(userQuota), common.FormatQuota(quota)), "insufficient_user_quota", http.StatusForbidden)
}
2024-07-17 23:50:37 +08:00
adaptor := GetAdaptor(relayInfo.ApiType)
if adaptor == nil {
return service.OpenAIErrorWrapperLocal(fmt.Errorf("invalid api type: %d", relayInfo.ApiType), "invalid_api_type", http.StatusBadRequest)
}
2024-07-17 23:50:37 +08:00
adaptor.Init(relayInfo)
2024-07-17 23:50:37 +08:00
var requestBody io.Reader
2024-07-17 23:50:37 +08:00
convertedRequest, err := adaptor.ConvertImageRequest(c, relayInfo, *imageRequest)
2023-06-19 10:28:55 +08:00
if err != nil {
2024-07-17 23:50:37 +08:00
return service.OpenAIErrorWrapperLocal(err, "convert_request_failed", http.StatusInternalServerError)
2023-06-19 10:28:55 +08:00
}
2024-07-17 23:50:37 +08:00
jsonData, err := json.Marshal(convertedRequest)
2023-06-19 10:28:55 +08:00
if err != nil {
2024-07-17 23:50:37 +08:00
return service.OpenAIErrorWrapperLocal(err, "json_marshal_failed", http.StatusInternalServerError)
}
2024-07-17 23:50:37 +08:00
requestBody = bytes.NewBuffer(jsonData)
2024-07-17 23:50:37 +08:00
statusCodeMappingStr := c.GetString("status_code_mapping")
2024-07-17 23:50:37 +08:00
resp, err := adaptor.DoRequest(c, relayInfo, requestBody)
if err != nil {
return service.OpenAIErrorWrapper(err, "do_request_failed", http.StatusInternalServerError)
}
var httpResp *http.Response
2024-07-17 23:50:37 +08:00
if resp != nil {
httpResp = resp.(*http.Response)
relayInfo.IsStream = relayInfo.IsStream || strings.HasPrefix(httpResp.Header.Get("Content-Type"), "text/event-stream")
if httpResp.StatusCode != http.StatusOK {
openaiErr := service.RelayErrorHandler(httpResp)
2024-07-17 23:50:37 +08:00
// reset status code 重置状态码
service.ResetStatusCode(openaiErr, statusCodeMappingStr)
return openaiErr
}
2023-06-19 10:28:55 +08:00
}
_, openaiErr := adaptor.DoResponse(c, httpResp, relayInfo)
2024-07-17 23:50:37 +08:00
if openaiErr != nil {
// reset status code 重置状态码
service.ResetStatusCode(openaiErr, statusCodeMappingStr)
return openaiErr
2023-06-19 10:28:55 +08:00
}
2024-07-17 23:50:37 +08:00
usage := &dto.Usage{
2024-07-18 17:12:28 +08:00
PromptTokens: imageRequest.N,
TotalTokens: imageRequest.N,
2023-06-19 10:28:55 +08:00
}
2024-07-17 23:50:37 +08:00
quality := "standard"
if imageRequest.Quality == "hd" {
quality = "hd"
2023-06-19 10:28:55 +08:00
}
2024-07-17 23:50:37 +08:00
logContent := fmt.Sprintf("大小 %s, 品质 %s", imageRequest.Size, quality)
postConsumeQuota(c, relayInfo, usage, 0, userQuota, priceData, logContent)
2023-06-19 10:28:55 +08:00
return nil
}