Commit fa454b1b authored by cyhhao's avatar cyhhao
Browse files

fix: align Claude Code system banner with opencode latest

parent 8375094c
...@@ -39,9 +39,10 @@ const ( ...@@ -39,9 +39,10 @@ const (
claudeAPICountTokensURL = "https://api.anthropic.com/v1/messages/count_tokens?beta=true" claudeAPICountTokensURL = "https://api.anthropic.com/v1/messages/count_tokens?beta=true"
stickySessionTTL = time.Hour // 粘性会话TTL stickySessionTTL = time.Hour // 粘性会话TTL
defaultMaxLineSize = 40 * 1024 * 1024 defaultMaxLineSize = 40 * 1024 * 1024
// Keep a trailing blank line so that when upstream concatenates system strings, // Canonical Claude Code banner. Keep it EXACT (no trailing whitespace/newlines)
// the injected Claude Code banner doesn't run into the next system instruction. // to match real Claude CLI traffic as closely as possible. When we need a visual
claudeCodeSystemPrompt = "You are Claude Code, Anthropic's official CLI for Claude.\n\n" // separator between system blocks, we add "\n\n" at concatenation time.
claudeCodeSystemPrompt = "You are Claude Code, Anthropic's official CLI for Claude."
maxCacheControlBlocks = 4 // Anthropic API 允许的最大 cache_control 块数量 maxCacheControlBlocks = 4 // Anthropic API 允许的最大 cache_control 块数量
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment