chore(release): fix clippy warnings and update web docs for v0.8.34

- Fix result_large_err and mem_replace_option_with_some in prefix_cache.rs
- Update web tool names from legacy (agent_spawn/agent_wait) to session-based (agent_open/agent_eval/agent_close)
- Fix config.toml examples: flat api_key instead of [api] section
- Add zh-CN fields to dispatch curation pipeline
- Update facts.generated.ts timestamp
This commit is contained in:
Hunter Bown
2026-05-13 12:59:10 -05:00
parent ad23f525b0
commit 656f8e4b15
10 changed files with 59 additions and 43 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ export function Footer({ locale = "en" }: { locale?: Locale }) {
<div>
<div className="font-display text-xl font-semibold">DeepSeek TUI</div>
<div className="font-cjk text-[0.7rem] text-ink-mute tracking-widest">
{isZh ? "深度求索 · 终端智能体" : "深度求索 · 终端代理"}
{isZh ? "深度求索 · 终端智能体" : "深度求索 · 终端智能体"}
</div>
</div>
</div>
+2 -2
View File
@@ -54,7 +54,7 @@ export function Nav({ locale = "en" }: { locale?: Locale }) {
<Whale size={20} className="text-indigo hidden sm:inline-block" />
</div>
<div className="font-cjk text-[0.65rem] sm:text-[0.7rem] text-ink-mute tracking-widest truncate">
{isZh ? "深度求索 · 终端智能体" : "深度求索 · 终端代理"}
{isZh ? "深度求索 · 终端智能体" : "深度求索 · 终端智能体"}
</div>
</div>
</Link>
@@ -86,7 +86,7 @@ export function Nav({ locale = "en" }: { locale?: Locale }) {
</Link>
<MobileMenu
installHref={isZh ? "/zh/install" : "/install"}
installLabel={isZh ? "安装 30 秒搞定 →" : "Install in 30 seconds →"}
installLabel={isZh ? "安装 →" : "Install →"}
links={links.map((l) => ({
href: l.href,
label: l.label,