轻量级 AI 应用运行时基础设施,支持多 Provider、意图检测和 Claude Code MCP 集成。
- 多 AI Provider 支持:Ollama、DeepSeek、Minimax、火山引擎
- 意图检测:自动识别用户输入类型(继续、修改、问答等)
- 状态管理:多轮对话状态持久化
- Workflow 引擎:Document、Revision 等处理流程
- MCP Server:接入 Claude Code,暴露 Skills 和 Functions
- 前端界面:可视化配置和状态监控
pip install -e ".[dev]"# 启动完整服务(前端 + API)
helix run
# 或直接使用 uvicorn
uvicorn helix.main:app --reload --host 0.0.0.0 --port 8000访问 http://localhost:8000 使用前端界面。
helix setup按提示配置:
- Intent Detection Provider(用于意图识别)
- User AI Provider(实际使用的 AI)
helix setup --mcp或手动添加到 ~/.claude/mcp.json:
{
"mcpServers": {
"helix-runtime": {
"command": "helix",
"args": ["mcp"]
}
}
}| 命令 | 说明 |
|---|---|
helix run |
启动完整服务(前端 + API) |
helix mcp |
仅作为 MCP Server 运行 |
helix setup |
交互式配置 Provider 和 MCP |
helix setup --mcp |
仅配置 MCP |
helix version |
显示版本 |
启动服务后访问:
- Swagger UI:http://localhost:8000/docs
- ReDoc:http://localhost:8000/redoc
- MCP Endpoint:http://localhost:8000/mcp