dsh-math
Scientific computing toolkit for DeepSeek Harness: numeric, matrix, units, statistics, plus symbolic calculus (CAS).
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:hatter123/dsh-math说明文档
阅读完整 README ↗Usage
The agent calls the math tool automatically when it needs a computation. Examples of what it can answer:
- determinant:
det([[1,2],[3,4]])→-2 - unit conversion:
5 cm to inch→1.9685039370078743 inch - big number:
2^100→1.2676506002282294e+30 - derivative:
derivative(x^2, x)→2*x - integral:
integral(x^2, x)→1/3*x^3 - solve:
roots(x^2 - 3x + 2)→[1,2]