| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- package controller
- import (
- "bytes"
- "encoding/json"
- "errors"
- "fmt"
- "io"
- "math"
- "net/http"
- "net/http/httptest"
- "net/url"
- "one-api/common"
- "one-api/constant"
- "one-api/dto"
- "one-api/middleware"
- "one-api/model"
- "one-api/relay"
- relaycommon "one-api/relay/common"
- "one-api/relay/helper"
- "one-api/service"
- "strconv"
- "strings"
- "sync"
- "time"
- "github.com/bytedance/gopkg/util/gopool"
- "github.com/gin-gonic/gin"
- )
- func testChannel(channel *model.Channel, testModel string) (err error, openAIErrorWithStatusCode *dto.OpenAIErrorWithStatusCode) {
- tik := time.Now()
- if channel.Type == constant.ChannelTypeMidjourney {
- return errors.New("midjourney channel test is not supported"), nil
- }
- if channel.Type == constant.ChannelTypeMidjourneyPlus {
- return errors.New("midjourney plus channel test is not supported"), nil
- }
- if channel.Type == constant.ChannelTypeSunoAPI {
- return errors.New("suno channel test is not supported"), nil
- }
- if channel.Type == constant.ChannelTypeKling {
- return errors.New("kling channel test is not supported"), nil
- }
- if channel.Type == constant.ChannelTypeJimeng {
- return errors.New("jimeng channel test is not supported"), nil
- }
- w := httptest.NewRecorder()
- c, _ := gin.CreateTestContext(w)
- requestPath := "/v1/chat/completions"
- // 先判断是否为 Embedding 模型
- if strings.Contains(strings.ToLower(testModel), "embedding") ||
- strings.HasPrefix(testModel, "m3e") || // m3e 系列模型
- strings.Contains(testModel, "bge-") || // bge 系列模型
- strings.Contains(testModel, "embed") ||
- channel.Type == constant.ChannelTypeMokaAI { // 其他 embedding 模型
- requestPath = "/v1/embeddings" // 修改请求路径
- }
- c.Request = &http.Request{
- Method: "POST",
- URL: &url.URL{Path: requestPath}, // 使用动态路径
- Body: nil,
- Header: make(http.Header),
- }
- if testModel == "" {
- if channel.TestModel != nil && *channel.TestModel != "" {
- testModel = *channel.TestModel
- } else {
- if len(channel.GetModels()) > 0 {
- testModel = channel.GetModels()[0]
- } else {
- testModel = "gpt-4o-mini"
- }
- }
- }
- cache, err := model.GetUserCache(1)
- if err != nil {
- return err, nil
- }
- cache.WriteContext(c)
- c.Request.Header.Set("Authorization", "Bearer "+channel.Key)
- c.Request.Header.Set("Content-Type", "application/json")
- c.Set("channel", channel.Type)
- c.Set("base_url", channel.GetBaseURL())
- group, _ := model.GetUserGroup(1, false)
- c.Set("group", group)
- middleware.SetupContextForSelectedChannel(c, channel, testModel)
- info := relaycommon.GenRelayInfo(c)
- err = helper.ModelMappedHelper(c, info, nil)
- if err != nil {
- return err, nil
- }
- testModel = info.UpstreamModelName
- apiType, _ := common.ChannelType2APIType(channel.Type)
- adaptor := relay.GetAdaptor(apiType)
- if adaptor == nil {
- return fmt.Errorf("invalid api type: %d, adaptor is nil", apiType), nil
- }
- request := buildTestRequest(testModel)
- // 创建一个用于日志的 info 副本,移除 ApiKey
- logInfo := *info
- logInfo.ApiKey = ""
- common.SysLog(fmt.Sprintf("testing channel %d with model %s , info %+v ", channel.Id, testModel, logInfo))
- priceData, err := helper.ModelPriceHelper(c, info, 0, int(request.MaxTokens))
- if err != nil {
- return err, nil
- }
- adaptor.Init(info)
- convertedRequest, err := adaptor.ConvertOpenAIRequest(c, info, request)
- if err != nil {
- return err, nil
- }
- jsonData, err := json.Marshal(convertedRequest)
- if err != nil {
- return err, nil
- }
- requestBody := bytes.NewBuffer(jsonData)
- c.Request.Body = io.NopCloser(requestBody)
- resp, err := adaptor.DoRequest(c, info, requestBody)
- if err != nil {
- return err, nil
- }
- var httpResp *http.Response
- if resp != nil {
- httpResp = resp.(*http.Response)
- if httpResp.StatusCode != http.StatusOK {
- err := service.RelayErrorHandler(httpResp, true)
- return fmt.Errorf("status code %d: %s", httpResp.StatusCode, err.Error.Message), err
- }
- }
- usageA, respErr := adaptor.DoResponse(c, httpResp, info)
- if respErr != nil {
- return fmt.Errorf("%s", respErr.Error.Message), respErr
- }
- if usageA == nil {
- return errors.New("usage is nil"), nil
- }
- usage := usageA.(*dto.Usage)
- result := w.Result()
- respBody, err := io.ReadAll(result.Body)
- if err != nil {
- return err, nil
- }
- info.PromptTokens = usage.PromptTokens
- quota := 0
- if !priceData.UsePrice {
- quota = usage.PromptTokens + int(math.Round(float64(usage.CompletionTokens)*priceData.CompletionRatio))
- quota = int(math.Round(float64(quota) * priceData.ModelRatio))
- if priceData.ModelRatio != 0 && quota <= 0 {
- quota = 1
- }
- } else {
- quota = int(priceData.ModelPrice * common.QuotaPerUnit)
- }
- tok := time.Now()
- milliseconds := tok.Sub(tik).Milliseconds()
- consumedTime := float64(milliseconds) / 1000.0
- other := service.GenerateTextOtherInfo(c, info, priceData.ModelRatio, priceData.GroupRatioInfo.GroupRatio, priceData.CompletionRatio,
- usage.PromptTokensDetails.CachedTokens, priceData.CacheRatio, priceData.ModelPrice, priceData.GroupRatioInfo.GroupSpecialRatio)
- model.RecordConsumeLog(c, 1, model.RecordConsumeLogParams{
- ChannelId: channel.Id,
- PromptTokens: usage.PromptTokens,
- CompletionTokens: usage.CompletionTokens,
- ModelName: info.OriginModelName,
- TokenName: "模型测试",
- Quota: quota,
- Content: "模型测试",
- UseTimeSeconds: int(consumedTime),
- IsStream: false,
- Group: info.UsingGroup,
- Other: other,
- })
- common.SysLog(fmt.Sprintf("testing channel #%d, response: \n%s", channel.Id, string(respBody)))
- return nil, nil
- }
- func buildTestRequest(model string) *dto.GeneralOpenAIRequest {
- testRequest := &dto.GeneralOpenAIRequest{
- Model: "", // this will be set later
- Stream: false,
- }
- // 先判断是否为 Embedding 模型
- if strings.Contains(strings.ToLower(model), "embedding") || // 其他 embedding 模型
- strings.HasPrefix(model, "m3e") || // m3e 系列模型
- strings.Contains(model, "bge-") {
- testRequest.Model = model
- // Embedding 请求
- testRequest.Input = []string{"hello world"}
- return testRequest
- }
- // 并非Embedding 模型
- if strings.HasPrefix(model, "o") {
- testRequest.MaxCompletionTokens = 10
- } else if strings.Contains(model, "thinking") {
- if !strings.Contains(model, "claude") {
- testRequest.MaxTokens = 50
- }
- } else if strings.Contains(model, "gemini") {
- testRequest.MaxTokens = 3000
- } else {
- testRequest.MaxTokens = 10
- }
- testMessage := dto.Message{
- Role: "user",
- Content: "hi",
- }
- testRequest.Model = model
- testRequest.Messages = append(testRequest.Messages, testMessage)
- return testRequest
- }
- func TestChannel(c *gin.Context) {
- channelId, err := strconv.Atoi(c.Param("id"))
- if err != nil {
- c.JSON(http.StatusOK, gin.H{
- "success": false,
- "message": err.Error(),
- })
- return
- }
- channel, err := model.GetChannelById(channelId, true)
- if err != nil {
- c.JSON(http.StatusOK, gin.H{
- "success": false,
- "message": err.Error(),
- })
- return
- }
- testModel := c.Query("model")
- tik := time.Now()
- err, _ = testChannel(channel, testModel)
- tok := time.Now()
- milliseconds := tok.Sub(tik).Milliseconds()
- go channel.UpdateResponseTime(milliseconds)
- consumedTime := float64(milliseconds) / 1000.0
- if err != nil {
- c.JSON(http.StatusOK, gin.H{
- "success": false,
- "message": err.Error(),
- "time": consumedTime,
- })
- return
- }
- c.JSON(http.StatusOK, gin.H{
- "success": true,
- "message": "",
- "time": consumedTime,
- })
- return
- }
- var testAllChannelsLock sync.Mutex
- var testAllChannelsRunning bool = false
- func testAllChannels(notify bool) error {
- testAllChannelsLock.Lock()
- if testAllChannelsRunning {
- testAllChannelsLock.Unlock()
- return errors.New("测试已在运行中")
- }
- testAllChannelsRunning = true
- testAllChannelsLock.Unlock()
- channels, err := model.GetAllChannels(0, 0, true, false)
- if err != nil {
- return err
- }
- var disableThreshold = int64(common.ChannelDisableThreshold * 1000)
- if disableThreshold == 0 {
- disableThreshold = 10000000 // a impossible value
- }
- gopool.Go(func() {
- // 使用 defer 确保无论如何都会重置运行状态,防止死锁
- defer func() {
- testAllChannelsLock.Lock()
- testAllChannelsRunning = false
- testAllChannelsLock.Unlock()
- }()
- for _, channel := range channels {
- isChannelEnabled := channel.Status == common.ChannelStatusEnabled
- tik := time.Now()
- err, openaiWithStatusErr := testChannel(channel, "")
- tok := time.Now()
- milliseconds := tok.Sub(tik).Milliseconds()
- shouldBanChannel := false
- // request error disables the channel
- if openaiWithStatusErr != nil {
- oaiErr := openaiWithStatusErr.Error
- err = errors.New(fmt.Sprintf("type %s, httpCode %d, code %v, message %s", oaiErr.Type, openaiWithStatusErr.StatusCode, oaiErr.Code, oaiErr.Message))
- shouldBanChannel = service.ShouldDisableChannel(channel.Type, openaiWithStatusErr)
- }
- if milliseconds > disableThreshold {
- err = errors.New(fmt.Sprintf("响应时间 %.2fs 超过阈值 %.2fs", float64(milliseconds)/1000.0, float64(disableThreshold)/1000.0))
- shouldBanChannel = true
- }
- // disable channel
- if isChannelEnabled && shouldBanChannel && channel.GetAutoBan() {
- service.DisableChannel(channel.Id, channel.Name, err.Error())
- }
- // enable channel
- if !isChannelEnabled && service.ShouldEnableChannel(err, openaiWithStatusErr, channel.Status) {
- service.EnableChannel(channel.Id, channel.Name)
- }
- channel.UpdateResponseTime(milliseconds)
- time.Sleep(common.RequestInterval)
- }
- if notify {
- service.NotifyRootUser(dto.NotifyTypeChannelTest, "通道测试完成", "所有通道测试已完成")
- }
- })
- return nil
- }
- func TestAllChannels(c *gin.Context) {
- err := testAllChannels(true)
- if err != nil {
- c.JSON(http.StatusOK, gin.H{
- "success": false,
- "message": err.Error(),
- })
- return
- }
- c.JSON(http.StatusOK, gin.H{
- "success": true,
- "message": "",
- })
- return
- }
- func AutomaticallyTestChannels(frequency int) {
- for {
- time.Sleep(time.Duration(frequency) * time.Minute)
- common.SysLog("testing all channels")
- _ = testAllChannels(false)
- common.SysLog("channel test finished")
- }
- }
|