model: step3-vl-10b (#17513)

This commit is contained in:
Yuhao Yang
2026-01-22 23:15:08 +08:00
committed by GitHub
parent 72f790bf6f
commit f7a0bcda1e
6 changed files with 712 additions and 4 deletions

View File

@@ -17,6 +17,7 @@ from sglang.srt.function_call.deepseekv32_detector import DeepSeekV32Detector
from sglang.srt.function_call.glm4_moe_detector import Glm4MoeDetector
from sglang.srt.function_call.glm47_moe_detector import Glm47MoeDetector
from sglang.srt.function_call.gpt_oss_detector import GptOssDetector
from sglang.srt.function_call.hermes_detector import HermesDetector
from sglang.srt.function_call.internlm_detector import InternlmDetector
from sglang.srt.function_call.kimik2_detector import KimiK2Detector
from sglang.srt.function_call.lfm2_detector import Lfm2Detector
@@ -64,6 +65,7 @@ class FunctionCallParser:
"minimax-m2": MinimaxM2Detector,
"trinity": TrinityDetector,
"interns1": InternlmDetector,
"hermes": HermesDetector,
}
def __init__(self, tools: List[Tool], tool_call_parser: str):