返回 DeepSeek-Reasonix
token_profile.go
根目录 / internal / boot / token_profile.go
1 package boot
2
3 // Retired economy/delivery mode-specific system prompts. Kept as negative
4 // fixtures so boot tests can prove role settings never inject them again.
5 // Provider-visible tools are unified across light|balanced|delivery; optional
6 // tools dispatch through use_capability without connect_tool_source.
7
8 const tokenEconomyPrompt = `Economy mode is on. Keep work direct and use connect_tool_source only when the task needs a capability absent from the core file and shell tools.`
9
10 const tokenDeliveryPrompt = `<delivery-profile>
11 Prioritize a verified, complete result over minimizing model calls or tokens.
12 For action requests: establish acceptance criteria; reproduce bugs when practical;
13 inspect the relevant code and project rules; fix the root cause; run focused
14 verification; review the resulting diff and adjacent behavior; and continue until
15 the request is complete or a genuine blocker remains. Do not claim success without
16 evidence. State any unverified result or assumption explicitly.
17 </delivery-profile>`
18
18 lines GO