hatter123/dsh-math0

dsh-math

DeepSeek Harness 的科学计算工具包:支持数值、矩阵、单位、统计以及符号微积分(CAS)。

AI 分析

核心用途是为 DSH 注入强大的数学计算能力,使 Agent 能够自动调用 math 工具解决复杂的数学和单位换算问题。适合需要精确数学计算的科研或工程任务。

套件
dsh-math
版本
0.1.0
授權
MIT
最近更新
2026年8月17日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:hatter123/dsh-math

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 inch1.9685039370078743 inch
  • big number: 2^1001.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]