mesenOne
Results
2
comments of
mesenOne
+1 请求添加,🙏
https://github.com/labring/FastGPT/issues/2093#issuecomment-2252355026 这个问题我已经解决,是系统bug,需要在模型流式输出那里对模型速率做统一处理,优化控制输出速率的函数,统一限制输出的速率(例如每 20ms 输出一个字),可以参考我的代码 ``` async function streamResponse({ res, detail, response }: { res: NextApiResponse; detail: boolean; response: any; }) { let answer = ''; let error: any = null;...