明廷盛 嘻嘻😁

支持多模态的模型

原文: https://github.com/deepseek-ai/deepseek-harness/blob/master/docs/user/guide/providers.zh.md

npm install -g @deepseek-ai/dsh
nohup dsh web > /tmp/dsh.log 2>&1 &

更新dsh配置文件

pkill -f '\.local/bin/dsh'; sleep 1; dsh --profile web --no-open

看启动日志

tail -f /tmp/dsh.log

停掉

pkill -f “dsh web”

配置

dsh –profile web –dump-config | grep ‘vision-toolkit’

重启+重新加载插件

dsh –profile web

列出插件

dsh plugin --profile web ls --depth 0
code --list-extensions --show-versions

带代理

https_proxy=http://127.0.0.1:7897
http_proxy=http://127.0.0.1:7897
ALL_PROXY=http://127.0.0.1:7897 \

更新

npm i -g @deepseek-ai/dsh@latest

billion context

启动带bil

# 一行:清掉旧 dsh + 旧 bili 代理,再带 bili 启动(代理自动落 8787)
lsof -ti tcp:3080 | xargs kill 2>/dev/null; lsof -ti tcp:8787 | xargs kill 2>/dev/null
nohup bili dsh -- --profile web --no-open >> ~/.dsh/review/dsh-restart.log 2>&1 &

检测bil状态

curl -s http://127.0.0.1:8787/__bili/health   # {"ok":true,...}
curl -s http://127.0.0.1:8787/__bili/stats # 你的 session-xxxx,发消息 requests +1

OpenCode

1.代理动启

open -a OpenCode --env HTTP_PROXY=http://127.0.0.1:7897 --env HTTPS_PROXY=http://127.0.0.1:7897
  • Title:
  • Author: 明廷盛
  • Created at : 2026-08-30 02:52:56
  • Updated at : 2026-08-30 02:52:56
  • Link: https://blog.20040424.xyz/2026/08/30/⏸️VibeCoding/3. dsh/
  • License: All Rights Reserved © 明廷盛