dsh-wolfram
Call Wolfram Mathematica from DeepSeek Harness
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:hatter123/dsh-wolfram说明文档
阅读完整 README ↗Usage
The agent calls the wolfram tool automatically with one expression argument (a string of Mathematica code).
Examples:
- integral:
Integrate[Cos[x], x]→Sin[x] - solve:
Solve[x^2 - 1 == 0, x]→{{x -> -1}, {x -> 1}} - limit:
Limit[Sin[x]/x, x -> 0]→1 - series:
Series[Exp[x], {x, 0, 3}]→1 + x + x^2/2 + x^3/6 + O[x]^4