dsh-math
DeepSeek Harness 的科学计算工具包:支持数值、矩阵、单位、统计以及符号微积分(CAS)。
AI 分析
核心用途是为 DSH 注入强大的数学计算能力,使 Agent 能够自动调用 math 工具解决复杂的数学和单位换算问题。适合需要精确数学计算的科研或工程任务。
安裝
$
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]