READMESource: main@42c622ed
dsh-client-ui-peak-valley
DSH(DeepSeek Harness)Web 客户端插件:在对话框模型选择按钮左侧显示当前 DeepSeek API 的峰/谷价状态。
- 🟢 绿色方块 + 「谷价」:空闲时段
- 🟠 橙色方块 + 「峰价」:高峰时段
判定规则(与官方定价一致):高峰时段为北京时间 09:00–12:00、14:00–18:00,其余为空闲(谷)时段。按 Asia/Shanghai 时区计算,不依赖浏览器本地时区;每 30 秒自动刷新,跨时段自动切换。
显示条件:仅当当前会话使用 DeepSeek 系列模型且来源为 官方 API 或 opencode-go 网关时才显示。判断依据:
- 模型 id 以
deepseek-开头(经session.models查询); - 来源为以下任一:
- 官方适配器
deepseek-official,且未将llm-deepseek配置的baseURL显式改为非官方地址(经settings.describe查询)——不查 baseURL 时视为官方; - 自定义网关 provider
opencode-go(视为官方 DeepSeek 中转,直接显示)。
- 官方适配器
使用其他第三方 provider(如 ww)或自定义 baseURL 时,除非模型为 deepseek-* 且来源满足上述条件,否则不显示。
安装
在 DSH profile 目录(例如 ~/.dsh/profiles/web/)下:
添加依赖:
// package.json { "dependencies": { "dsh-client-ui-peak-valley": "github:liuyun847/dsh-client-ui-peak-valley" } }然后
pnpm install(或npm install)。在
cordis.patch.yml中注册插件行:- insert: - id: peak-valley name: 'dsh-client-ui-peak-valley'重启
dsh web,刷新页面后生效。
也可以先
npm publish发布到 npm registry,再把依赖改为"dsh-client-ui-peak-valley": "^0.1.1"。
工作原理
- 通过
dsh.client声明(见package.json)注册为浏览器端插件。 - 在
conversation.input.right座位注册 UI——该座位恰好渲染在模型选择按钮(conversation.input.model)的左侧,不替换任何原生 UI。 - 颜色使用主题 token(
--dsw-alias-state-success-primary/--dsw-alias-state-warn-primary),自动适配浅色/深色主题。
开发
# 本地直接安装依赖后即可开发
pnpm install
# 修改 lib/client.js 后,按上述安装方式重新安装/重启生效
License
MIT
No comments yet. Be the first to write one.