(dsToken string)
| 209 | } |
| 210 | |
| 211 | func getCookies(dsToken string) map[string]string { |
| 212 | return map[string]string{ |
| 213 | "guest_has_seen_legal_disclaimer": "true", |
| 214 | "youchat_personalization": "true", |
| 215 | "DS": dsToken, |
| 216 | "you_subscription": "youpro_standard_year", |
| 217 | "youpro_subscription": "true", |
| 218 | "ai_model": "deepseek_r1", |
| 219 | "youchat_smart_learn": "true", |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | func handleNonStreamingResponse(w http.ResponseWriter, youReq *http.Request) { |
| 224 | client := &http.Client{ |