ソースを参照

chore: update test logic

JustSong 2 年 前
コミット
2ab8dac764
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