remove dpsk3.2 sys prompt (#14923)

Signed-off-by: Xinyuan Tong <xinyuantong.cs@gmail.com>
This commit is contained in:
Xinyuan Tong
2025-12-12 04:26:13 +00:00
committed by GitHub
parent e4873d0439
commit 8bf10e71cd

View File

@@ -286,18 +286,13 @@ class OpenAIServingChat(OpenAIServingBase):
template_content_format = self.template_manager.jinja_template_content_format
if self.use_dpsk_v32_encoding:
if request.chat_template_kwargs and request.chat_template_kwargs.get(
thinking_mode = (
"thinking"
):
thinking_mode = "thinking"
else:
thinking_mode = "chat"
if (request.chat_template_kwargs or {}).get("thinking")
else "chat"
)
messages = request.messages
messages = [msg.model_dump() for msg in messages]
if messages[0]["role"] != "system":
messages.insert(
0, {"role": "system", "content": "You are a helpful Assistant."}
)
if request.tools:
messages[0]["tools"] = [tool.model_dump() for tool in request.tools]
real_input = encode_messages(