已合并
修复runtime中的toolCallsProcessor未init的问题 #1036
xsxhw创建于 5月28日
修复runtime中的toolCallsProcessor未init的问题 #1036
已合并
xsxhw创建于 5月28日
1 个文件变更+8-0
@@ -26,9 +26,17 @@ def register_all_tool_calls_processors():
26 Import to register all ToolCallProcessors26 Import to register all ToolCallProcessors
27 """27 """
28 # Qwen328 # Qwen3
29+ from mindie_llm.runtime.models.qwen3.tool_calls_processor_qwen3 import ( # noqa: F401
30+ ToolCallsProcessorQwen3,
31+ )
OO
OopenLiBingCI5月28日

此条代码评论区间+29+31

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
OopenLiBingCI5月28日

此条代码评论区间+29+31

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
OopenLiBingCI5月28日

此条代码评论区间+29+31

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
OopenLiBingCI5月28日

此条代码评论区间+29+31

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
32+ 
29 logger.debug("Successfully imported Qwen3 ToolCallProcessors")33 logger.debug("Successfully imported Qwen3 ToolCallProcessors")
30 34 
31 # DeepSeekV335 # DeepSeekV3
36+ from mindie_llm.runtime.models.deepseek_v32.tool_calls_processor_deepseekv32 import ( # noqa: F401
37+ ToolCallsProcessorDeepseekv32,
38+ )
OO
OopenLiBingCI5月28日

此条代码评论区间+30+38

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
OopenLiBingCI5月28日

此条代码评论区间+30+38

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
OopenLiBingCI5月28日

此条代码评论区间+30+38

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
OopenLiBingCI5月28日

此条代码评论区间+30+38

【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。

likedislike
39+ 
32 logger.debug("Successfully imported DeepSeekV3.2 ToolCallProcessors")40 logger.debug("Successfully imported DeepSeekV3.2 ToolCallProcessors")
33 41 
34 42