经 AI Skill Hub 精选评估,VulcanBench 获评「强烈推荐」。这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
VulcanBench 是一款基于 Python 开发的开源工具,专注于 AI、LLM、benchmark 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
VulcanBench 是一款基于 Python 开发的开源工具,专注于 AI、LLM、benchmark 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install vulcanbench
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install vulcanbench
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/morganlinton/VulcanBench
cd VulcanBench
pip install -e .
# 验证安装
python -c "import vulcanbench; print('安装成功')"
# 命令行使用
vulcanbench --help
# 基本用法
vulcanbench input_file -o output_file
# Python 代码中调用
import vulcanbench
# 示例
result = vulcanbench.process("input")
print(result)
# vulcanbench 配置文件示例(config.yml) app: name: "vulcanbench" debug: false log_level: "INFO" # 运行时指定配置文件 vulcanbench --config config.yml # 或通过环境变量配置 export VULCANBENCH_API_KEY="your-key" export VULCANBENCH_OUTPUT_DIR="./output"
Fully open-source benchmarking for LLMs on realistic, multi-file software engineering tasks. VulcanBench measures how models perform across reasoning effort, language, codebase scale, and task complexity — with full traces, reproducible scoring, and a local dashboard.
v0.5.1 — 50 gold-verified tasks, tool-calling agent (mock / OpenAI / Anthropic / Z.ai), Docker sandbox, pre-run cost estimates with bundled priors (vulcanbench estimate), v1-compare suite, five-metric scoring, suite runs, and HTML replay. See docs/QUICKSTART.md to get started.
```
- docker (default) runs tools in a non-root, network-off, resource-limited container (workspace bind-mounted, cleaned up after each run). It errors out if the daemon is unreachable — it never silently falls back to host execution. - local runs the model's commands directly on the host — fast and Docker-free, but unsandboxed; opt in deliberately (fine for mock:synthetic and trusted dev loops). - auto uses Docker when available. Falling back to host execution additionally requires VULCANBENCH_ALLOW_HOST_EXEC=1; otherwise it errors out.
File operations (read/edit/search) always run host-side over the shared mount; command execution (run_command/run_tests/run_lint) and the functional verifier run inside the container, so the whole run is reproduced in one isolated environment. Build the all-language image with `docker build -t vulcanbench/sandbox:base -f sandbox/Dockerfile.base .` (Python + Go + Node).
git clone https://github.com/morganlinton/VulcanBench.git
cd VulcanBench
make setup
source .venv/bin/activate
vulcanbench --help
Dashboard + backend (the dashboard reads live data from the API):
pip install -e ".[backend]"
uvicorn backend.app:app --port 8000 # serves ./runs at /api/*
cd dashboard && npm install && npm run dev # http://localhost:3000 The dashboard falls back to a friendly empty state if the backend isn't running. Point it elsewhere with NEXT_PUBLIC_API_BASE (see dashboard/.env.example).
By default the API reads ./runs/ directly. For a durable, queryable store, set DATABASE_URL (Postgres or SQLite) and the API switches to a database — POST /api/runs and /api/feedback become writable, and python scripts/ingest_runs.py bulk-loads existing runs. A Postgres is provided by docker compose up db.
docker build -t vulcanbench/sandbox:base -f sandbox/Dockerfile.base .
vulcanbench run --task hello-world --model openai:gpt-4o
```bash
VulcanBench is an independent evaluation harness. A few boundaries keep its use consistent with the model providers' terms — please read these before running or publishing results.
- You bring your own keys, under your own agreement. VulcanBench never bundles or shares API credentials. Each run uses the keys in your environment (OPENAI_API_KEY, ANTHROPIC_API_KEY, ZAI_API_KEY), so every call is made under your account and your commercial/API agreement with that provider. You are responsible for staying within your provider's terms and usage policies.
- Outputs are for evaluation, not training. Recorded run artifacts (traces, patches, summaries) capture model outputs solely for scoring, inspection, and reproducibility. Both OpenAI and Anthropic prohibit using their outputs to develop or train competing models — do not use VulcanBench artifacts, or any published corpus of them, for that purpose. VulcanBench intentionally has no "export outputs as a training dataset" feature.
- Trademarks & independence. "OpenAI" and "GPT" are trademarks of OpenAI; "Anthropic" and "Claude" are trademarks of Anthropic; "Z.ai" and "GLM" are trademarks of Zhipu AI. VulcanBench is not affiliated with, sponsored by, or endorsed by any of these companies. Model and provider names are used only to identify the systems under test.
This is not legal advice; consult the current provider terms for authoritative guidance.
export OPENAI_API_KEY=... # or ANTHROPIC_API_KEY=... vulcanbench run --task hello-world --model openai:gpt-4o vulcanbench run --task hello-world --model anthropic:claude-opus-4-8 vulcanbench run --task hello-world --model zai:glm-5.2
vulcanbench run --suite v1 --model openai:gpt-4o --effort low vulcanbench effort-sweep --suite v1 --model openai:gpt-5.1 --efforts low,medium,high --repeat 3 --sandbox docker
高质量的开源AI基准测试工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:VulcanBench 的核心功能完整,质量优秀。对于AI 技术爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | VulcanBench |
| Topics | AILLMbenchmark |
| GitHub | https://github.com/morganlinton/VulcanBench |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-27 · 更新时间:2026-06-27 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。