fix: Reduce chunk returns in dify and Hundred Refining Runner to every 8 chunks

This commit is contained in:
fdc
2025-08-04 16:39:38 +08:00
committed by Junyan Qin
parent 8adc88a8c0
commit 4a1d033ee9
3 changed files with 3 additions and 3 deletions

View File

@@ -55,6 +55,6 @@ class MoonshotChatCompletions(chatcmpl.OpenAIChatCompletions):
resp = await self._req(args, extra_body=extra_args)
# 处理请求结果
message = await self._make_msg(resp,remove_think)
message = await self._make_msg(resp, remove_think)
return message