已合并
修复runtime中的toolCallsProcessor未init的问题 #1036
xsxhw创建于 5月28日
修复runtime中的toolCallsProcessor未init的问题 #1036
已合并
共 1 个文件变更+8-0
| @@ -26,9 +26,17 @@ def register_all_tool_calls_processors(): | |||
| 26 | Import to register all ToolCallProcessors | 26 | Import to register all ToolCallProcessors |
| 27 | """ | 27 | """ |
| 28 | # Qwen3 | 28 | # Qwen3 |
| 29 | + from mindie_llm.runtime.models.qwen3.tool_calls_processor_qwen3 import ( # noqa: F401 | ||
| 30 | + ToolCallsProcessorQwen3, | ||
| 31 | + ) | ||
OO 【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。 ![]() ![]() 【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。 ![]() ![]() 【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。 ![]() ![]() | |||
| 32 | + | ||
| 29 | logger.debug("Successfully imported Qwen3 ToolCallProcessors") | 33 | logger.debug("Successfully imported Qwen3 ToolCallProcessors") |
| 30 | 34 | ||
| 31 | # DeepSeekV3 | 35 | # DeepSeekV3 |
| 36 | + from mindie_llm.runtime.models.deepseek_v32.tool_calls_processor_deepseekv32 import ( # noqa: F401 | ||
| 37 | + ToolCallsProcessorDeepseekv32, | ||
| 38 | + ) | ||
OO 【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。 ![]() ![]() 【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。 ![]() ![]() 【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。 ![]() ![]() 【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。 ![]() ![]() | |||
| 39 | + | ||
| 32 | logger.debug("Successfully imported DeepSeekV3.2 ToolCallProcessors") | 40 | logger.debug("Successfully imported DeepSeekV3.2 ToolCallProcessors") |
| 33 | 41 | ||
| 34 | 42 | ||


此条代码评论区间+29至+31
【openlibing.ci】识别到代码检查告警抑制注释,匹配工具:flake8,请Committer检视其合理性。