Browse Source

chore: update prompt

JustSong 2 years ago
parent
commit
9d0bec83df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      controller/relay.go

+ 1 - 1
controller/relay.go

@@ -108,7 +108,7 @@ func Relay(c *gin.Context) {
 	err := relayHelper(c, relayMode)
 	if err != nil {
 		if err.StatusCode == http.StatusTooManyRequests {
-			err.OpenAIError.Message = "负载已满,请稍后再试,或升级账户以提升服务质量。"
+			err.OpenAIError.Message = "当前分组负载已饱和,请稍后再试,或升级账户以提升服务质量。"
 		}
 		c.JSON(err.StatusCode, gin.H{
 			"error": err.OpenAIError,