From cc83ddbe210a668d78b577f083b705552e9f9907 Mon Sep 17 00:00:00 2001 From: Dong_master <2213070223@qq.com> Date: Tue, 12 Aug 2025 23:29:32 +0800 Subject: [PATCH] fix: del print --- pkg/provider/modelmgr/requesters/modelscopechatcmpl.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/provider/modelmgr/requesters/modelscopechatcmpl.py b/pkg/provider/modelmgr/requesters/modelscopechatcmpl.py index 7ef3ab58..e8fe89bf 100644 --- a/pkg/provider/modelmgr/requesters/modelscopechatcmpl.py +++ b/pkg/provider/modelmgr/requesters/modelscopechatcmpl.py @@ -248,7 +248,6 @@ class ModelScopeChatCompletions(requester.ProviderAPIRequester): if hasattr(chunk, 'choices') and chunk.choices: choice = chunk.choices[0] delta = choice.delta.model_dump() if hasattr(choice, 'delta') else {} - print(delta) finish_reason = getattr(choice, 'finish_reason', None) else: delta = {}