ChengChe106/dsh-session-cost
DSH插件:在Web GUI统计栏中估算每次会话的DeepSeek API费用
项目介绍Project Overview
DSH 插件 dsh-session-cost,在 Web GUI 底部官方统计条下方新增一行实时费用估算,格式为 费用 ≈¥x.xx | 命中 | 未命中 | 输出,字体、间距与主题色完全跟随官方。计费基于 dsh-token-meter 的 tokenUsage 投影,缓存写入按未命中单价计算,2026-08-17 起自动切换峰谷时段定价。适合需要随时掌握单次会话花费、核对模型用量与账单的开发者。注意:该值为估算口径,与官方账单可能存在差异(缓存写入归类、四舍五入、模型中途切换不追溯),默认按 deepseek-v4-flash 计费,如需调整需手动修改 lib/client.js。
dsh-session-cost is a DSH plugin that appends a real-time cost estimate line beneath the official token-usage bar in the Web GUI, formatted as Cost ≈¥x.xx | Hit | Miss | Output, styled to match the built-in 12px theme-aware typography. It sources token counts from the dsh-token-meter projection, treats cache writes as miss-priced, and auto-switches between peak and off-peak rates from 2026-08-17 onward. Use it to monitor per-session spend and cross-check model usage against billing. Caveat: figures are estimates and may differ from official invoices due to rounding, the cache-write billing convention, and mid-session model switches.
请帮我了解并安装插件:【dsh-session-cost】【https://github.com/ChengChe106/dsh-session-cost】
把上面这条消息直接发给当前会话里的 DSH,让它帮你了解并安装。安装命令不一定准确,发给 DSH 更稳。Send this message to DSH in your current session. CLI install commands may not be accurate across systems — DSH will figure it out for you.
或使用命令行安装(适合开发者)Or use CLI install (for developers)
命令行安装CLI Install
dsh plugin add dsh-session-cost
把 ChengChe106/dsh-session-cost 加入你的 DSH 配置(web profile)即可启用。
READMEREADME
dsh-session-cost
DSH(DeepSeek Harness)插件:在 Web GUI 底部统计条里显示当前会话的 DeepSeek API 费用估算。
效果:统计条下方多出一行 费用 ≈¥0.35 | 命中 ¥0.28 | 未命中 ¥0.02 | 输出 ¥0.05,字体与配色完全对齐官方统计条(12px、主题自适应)。

安装
dsh plugin add dsh-session-cost
(dsh 未全局安装时:npx --yes @deepseek-ai/dsh plugin --profile web add dsh-session-cost)
安装后重启 dsh web 生效。
怎么算的
- 数据源:DSH 的
tokenUsage会话投影(官方dsh-token-meter提供,与统计条同源):uncachedInputTokens/cacheReadTokens/cacheWriteTokens/outputTokens - 计费口径(对应官方账单):缓存写入按"未命中"单价计
费用 = (未命中 + 写入) × miss单价 + 命中 × hit单价 + 输出 × out单价 - 价格:官方 https://api-docs.deepseek.com/zh-cn/quick_start/pricing
| 模型 | 百万输入(命中) | 百万输入(未命中) | 百万输出 |
|---|---|---|---|
| deepseek-v4-flash(2026-08-17 前) | ¥0.02 | ¥1 | ¥2 |
| deepseek-v4-pro(2026-08-17 前) | ¥0.025 | ¥3 | ¥6 |
| deepseek-v4-flash · 高峰(9-12/14-18 北京时间) | ¥0.10 | ¥3 | ¥9 |
| deepseek-v4-flash · 空闲 | ¥0.05 | ¥1.5 | ¥4.5 |
| deepseek-v4-pro · 高峰 | ¥0.30 | ¥9 | ¥27 |
| deepseek-v4-pro · 空闲 | ¥0.15 | ¥4.5 | ¥13.5 |
- 2026-08-17 00:00(北京时间)起自动切换峰谷计价;高峰时段自动按北京时间判断
说明与限制
- 估算值:仅供参考,与实际账单可能有出入(缓存写入归入未命中的口径、模型切换、四舍五入)
- 模型:v1 按
deepseek-v4-flash计(会话中途切换模型不追溯);要改默认模型/价格,编辑lib/client.js顶部的DEFAULT_MODEL与价格表 - 显示"≈"标记表示估算
nexu-io/open-design
freestylefly/awesome-gpt-image-2
anywhere-labs/dsh-desktop
walkinglabs/learn-harness-engineering
awesome-dsh-plugin/awesome-dsh-plugin
MemTensor/MemOS