hatter123/dsh-wolfram1

dsh-wolfram

Call Wolfram Mathematica from DeepSeek Harness

AI 分析

使 DSH 智能体能够自动调用 Wolfram Mathematica 执行数学计算(如积分、方程求解、极限和级数展开)。适合需要高级数学计算和符号运算任务的用户。

パッケージ
dsh-wolfram
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/18

インストール

$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