JustSong 2 лет назад
Родитель
Сommit
9301b3fed3
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      controller/channel-test.go

+ 1 - 1
controller/channel-test.go

@@ -56,7 +56,7 @@ func testChannel(channel *model.Channel, request *ChatRequest) error {
 	if err != nil {
 		return err
 	}
-	if response.Error.Message != "" || response.Error.Code != "" {
+	if response.Usage.CompletionTokens == 0 {
 		return errors.New(fmt.Sprintf("type %s, code %s, message %s", response.Error.Type, response.Error.Code, response.Error.Message))
 	}
 	return nil