dsh-wolfram
从 DeepSeek Harness 调用 Wolfram Mathematica 的插件。
AI 分析
使 DSH 智能体能够自动调用 Wolfram Mathematica 执行数学计算(如积分、方程求解、极限和级数展开)。适合需要高级数学计算和符号运算任务的用户。
安裝
$
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