@k41ch3n/dpsk
v0.1.0
Published
A harness CLI for DeepSeek models (TUI + one-shot prompts)
Downloads
49
Maintainers
Readme
dpsk
A harness CLI for DeepSeek models. harness + model = agent.
Install
bun installSet your API key:
export DEEPSEEK_API_KEY=sk-xxxx
# Optional: override endpoint (default https://api.deepseek.com)
# export DEEPSEEK_BASE_URL=https://api.deepseek.comUsage
# Interactive TUI (default when no -p and stdin is a TTY)
bun run dpsk
bun run dpsk tui
# One-shot prompt (streaming output)
bun run dpsk -p "用一句话解释 KISS 原则"
# Pipe from stdin
echo "翻译成英文:温故而知新" | bun run dpsk
# Choose model (default is --flash)
bun run dpsk --pro -p "证明 Cauchy-Schwarz 不等式"
bun run dpsk --flash --system-prompt "你是一名资深 Rustacean"TUI commands: /exit · /clear · /system <text>
Run bun run dpsk --help for all options.
