hatter123/dsh-wolfram1

dsh-wolfram

Call Wolfram Mathematica from DeepSeek Harness

包名
dsh-wolfram
版本
0.1.0
许可证
MIT
最近更新
2026年8月18日

安装

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

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