|
@@ -50,7 +50,6 @@ func (l *GptsSubmitApiChatLogic) GptsSubmitApiChat(tokenStr string, req *types.G
|
|
|
if err != nil {
|
|
|
jsonData := ChatMessage{}
|
|
|
jsonData.NeedLogin = true
|
|
|
- jsonData.Finish = true
|
|
|
jsonDataStr, _ := json.Marshal(jsonData)
|
|
|
_, _ = fmt.Fprintf(w, "%s", "data: "+string(jsonDataStr)+"\r\n")
|
|
|
flusher.Flush()
|
|
@@ -60,7 +59,7 @@ func (l *GptsSubmitApiChatLogic) GptsSubmitApiChat(tokenStr string, req *types.G
|
|
|
userId, ok := claims["userId"].(string) //用户的uuid
|
|
|
if !ok || userId == "" {
|
|
|
jsonData := ChatMessage{}
|
|
|
- jsonData.NeedPay = true
|
|
|
+ jsonData.NeedLogin = true
|
|
|
jsonDataStr, _ := json.Marshal(jsonData)
|
|
|
_, _ = fmt.Fprintf(w, "%s", "data: "+string(jsonDataStr)+"\r\n")
|
|
|
flusher.Flush()
|