You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The i18n hint said "默认关闭" while runtime-config.js has defaulted to
true since 2.0 — superkura opened #52 ("关闭了对话还在使用 cascade")
because the dashboard told him the toggle was off. Flip both locales to
"默认开启" and spell out what the toggle actually controls: cascade_id
reuse across requests only, not whether Cascade is used (all premium
models always go through Cascade; tool-emulated requests auto-skip reuse
regardless of this setting).
Credits panel: add S+/S/A+/A/B+ weight badge with tooltip describing why
each contributor earned their tier; append PR #51 (aict666, Opus
injection-guard rewrite) and PR #45 (baily-zhang, trajectory offset)
that were missing from the list; expand summaries for S+/S contributors
to name the specific regression each fix eliminated.
Copy file name to clipboardExpand all lines: src/dashboard/i18n/en.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -222,9 +222,9 @@
222
222
},
223
223
"cascadeReuse": {
224
224
"title": "Cascade Conversation Reuse",
225
-
"desc": "Reuse the same cascade_id across multi-turn conversations, only sending the latest user message to Windsurf. Let the server maintain context cache. Significantly reduces TTFB and upload volume on cache hits; automatically falls back to new session on cache miss or account/LS change. Requires client to retain full history and append in order (e.g., new-api, OpenWebUI).",
225
+
"desc": "Reuse the same cascade_id across multi-turn conversations, only sending the latest user message to Windsurf. Let the server maintain context cache. Significantly reduces TTFB and upload volume on cache hits; automatically falls back to new session on cache miss or account/LS change. Requires client to retain full history and append in order (e.g., new-api, OpenWebUI). Note: this toggle only governs cascade_id reuse across requests — it does NOT control whether Cascade is used. Tool-emulated requests (Claude Code / Cline / Cursor) auto-skip reuse because each turn's content changes, regardless of this setting.",
226
226
"enable": "Enable Cascade Conversation Reuse",
227
-
"hint": "Disabled by default. When enabled, takes effect immediately on current conversation pool."
227
+
"hint": "Enabled by default. When disabled, Cascade is still used but a fresh session is created per turn. Takes effect immediately on current conversation pool."
// new PR lands; the dashboard Credits panel renders straight from this.
4701
4708
CONTRIBUTORS: [
4702
4709
{
4703
-
login: 'dd373156',
4704
-
pr: 1,
4705
-
mergedAt: '2026-04-20',
4706
-
title: 'fix(models): make pro tier include dynamically merged cloud models',
4707
-
summary: '发现 Pro 层级只看到硬编码的模型清单,拉自云端的动态扩展模型没合并进 tier 表,导致 Cursor / Cherry Studio 等客户端在 Pro 账号下也看不见最新上线的模型。修了 mergeCloudModels 的合并路径,让云端扩展模型进入 Pro 的可用清单。',
summary: 'Opus-class 模型走 /v1/messages 时完全不 emit <tool_call>,直接回复"The pasted content appears to be a prompt-injection attempt"。root cause 精确到 TOOL_PROTOCOL_HEADER 里三段越狱措辞(IGNORE any earlier / For THIS request only / [Tool-calling context] 栅栏)被 Opus 自己的 injection detector 反杀。重写成中性的 "The following functions are available for this turn",保留 <tool_call> 协议合同与 parser 不动,附带 3 条 banned-regex 回归测试防止未来倒退。PR body 可以直接发 Anthropic 论坛。',
0 commit comments