AI Skill Hub 强烈推荐:交互式3D数学可视化 是一款优质的Agent工作流。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
交互式3D数学可视化 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
交互式3D数学可视化 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install algebench
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install algebench
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/ibenian/algebench
cd algebench
pip install -e .
# 验证安装
python -c "import algebench; print('安装成功')"
# 命令行使用
algebench --help
# 基本用法
algebench input_file -o output_file
# Python 代码中调用
import algebench
# 示例
result = algebench.process("input")
print(result)
# algebench 配置文件示例(config.yml) app: name: "algebench" debug: false log_level: "INFO" # 运行时指定配置文件 algebench --config config.yml # 或通过环境变量配置 export ALGEBENCH_API_KEY="your-key" export ALGEBENCH_OUTPUT_DIR="./output"
See and touch the math. Think with an AI.
AI for human understanding — not for outsourcing thought.
Interactive 3D lessons with a live AI narrator. Spin up a scene, listen to it explain itself, then interrupt and ask what, how and the why — the narrator answers in real time and the visualization responds.
Step-by-step proofs walk through derivations alongside the 3D scene — each step shows the math, the justification, and highlighted regions you can click to see what changed. A semantic graph parses the current expression into an interactive flowchart of variables, operators, and relationships, so you can see the structure of an equation, not just its symbols. Proofs and the graph stay in sync: advance a proof step and the graph and 3D view update together.
Made for: self-taught learners, students, and educators who think math makes more sense when you can see it move.

---
| **Production** | [algebench.org](https://algebench.org) |
| **Hugging Face mirror** | [ibenian-algebench.hf.space](https://ibenian-algebench.hf.space) |
| **Staging** | [algebench-staging.onrender.com](https://algebench-staging.onrender.com) |
---
Prerequisites: Docker, a Gemini API key.
No clone, no Python setup — run the prebuilt AlgeBench image from the Hugging Face Space registry and pass your own GEMINI_API_KEY:
docker run -it --pull=always -p 7860:7860 --platform=linux/amd64 \
-e GEMINI_API_KEY="your_key_here" \
registry.hf.space/ibenian-algebench:latest
Open http://localhost:7860 in your browser.
--pull=alwaysensures you get the newest published build (Docker otherwise reuses a cached:latest).--platform=linux/amd64is needed on Apple Silicon and other ARM hosts since the Space image is built foramd64.
To map a different host port, change the left side of -p (e.g. -p 9000:7860) and open that port instead.
There are two ways to run AlgeBench locally. Either way you'll need your own Gemini API key — see Get a Gemini API key.
Prerequisites: uv (recommended) or Python 3.10+, plus a Gemini API key. With uv installed you don't need a preinstalled Python — it provisions the pinned interpreter (.python-version, Python 3.13) for you, on a native CPython build. This matters on Apple Silicon: a bare python3 -m venv often picks an x86 Homebrew Python and runs everything under Rosetta, which roughly halves sympy throughput. With uv present the dev venv is always native arm64. If uv is absent the scripts fall back to python3 -m venv (a warning is printed).
git clone https://github.com/ibenian/algebench
cd algebench
export GEMINI_API_KEY=your_key_here
./algebench
On first run, ./algebench creates a virtual environment and installs the dependencies automatically — no manual pip install needed. Then open http://localhost:8785 in your browser.
To confirm the venv is native (no Rosetta) on Apple Silicon:
.venv/bin/python3 -c "import platform; print(platform.machine())" # -> arm64
To launch directly into a scene:
./algebench scenes/eigenvalues.json
To update to the latest version of [gemini-live-tools](https://github.com/ibenian/gemini-live-tools) (which includes new voice characters and the voice picker UI):
./algebench --update
This reinstalls gemini-live-tools from GitHub and copies the updated voice-character-selector.js into the app. Not ideal, but simple enough for now.
For all available CLI options including TTS settings:
./algebench --help
AlgeBench's AI narrator runs on Google's Gemini models, so you need your own free API key from Google AI Studio:
1. Go to aistudio.google.com and sign in with a Google account. 2. Open Get API key (the Get API key button in the left sidebar). 3. Click Create API key. If you don't have a Google Cloud project yet, choose Create API key in new project — AI Studio creates one for you automatically. Otherwise pick an existing project from the list. 4. Copy the generated key. Keep it secret — treat it like a password.
The free tier is enough to try AlgeBench. For higher rate limits, enable billing on the Google Cloud project backing your key.
创新性的AI辅助数学学习工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,交互式3D数学可视化 是一款质量优秀的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | algebench |
| 原始描述 | 开源AI工作流:Interactive 3D math visualizer with an agentic AI tutor. Explore concepts throug。⭐6 · Python |
| Topics | aieducationinteractive-learningmath |
| GitHub | https://github.com/ibenian/algebench |
| License | MIT |
| 语言 | Python |
收录时间:2026-07-07 · 更新时间:2026-07-07 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端