Should the thinking mode in DS v3.2 use the default system prompt?
#24
by
ShengnanAn
- opened
I noticed that DS configured a default system prompt in the PR for sglang use_dpsk_v32_encoding in SGLang.
It is quite simple:
if messages[0]["role"] != "system":
messages.insert(
0, {"role": "system", "content": "You are a helpful Assistant."}
)
I'm a bit curious whether this default system prompt is also suitable for the thinking mode. Is it used in training by default?
This prompts is widely used in training processes.