(chatId: string, username?: string)
| 382 | headers: { |
| 383 | Authorization: `Bearer ${apiKey}`, |
| 384 | "Content-Type": "application/json", |
| 385 | }, |
| 386 | timeout, |
| 387 | }, |
| 388 | ); |
| 389 | const content = response.data?.choices?.[0]?.message?.content; |
| 390 | if (typeof content !== "string" || !content.trim()) |
| 391 | throw new Error("Chat Completions 返回内容为空"); |
| 392 | return content.trim(); |
| 393 | } |
| 394 |