hatter123/dsh-wolfram1

dsh-wolfram

Call Wolfram Mathematica from DeepSeek Harness

AI Analysis

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

Package
dsh-wolfram
Version
0.1.0
License
MIT
Last updated
Aug 18, 2026

Install

$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