OM1 是 AI Skill Hub 本期精选Agent工作流之一。已获得 2.8k 颗 GitHub Star,综合评分 8.0 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
OM1 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
OM1 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install om1
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install om1
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/OpenMind/OM1
cd OM1
pip install -e .
# 验证安装
python -c "import om1; print('安装成功')"
# 命令行使用
om1 --help
# 基本用法
om1 input_file -o output_file
# Python 代码中调用
import om1
# 示例
result = om1.process("input")
print(result)
# om1 配置文件示例(config.yml) app: name: "om1" debug: false log_level: "INFO" # 运行时指定配置文件 om1 --config config.yml # 或通过环境变量配置 export OM1_API_KEY="your-key" export OM1_OUTPUT_DIR="./output"
<p align="center"> <a href="https://arxiv.org/abs/2412.18588">Technical Paper</a> | <a href="https://docs.openmind.com/">Documentation</a> | <a href="https://x.com/openmind_agi">X</a> </p>
OpenMind's OM1 is a modular AI runtime that empowers developers to create and deploy multimodal AI agents across digital environments and physical robots, including Humanoids, Phone Apps, Quadrupeds, educational robots such as TurtleBot 4, and simulators like Gazebo and Isaac Sim. OM1 agents can process diverse inputs like web data, social media, camera feeds, and LIDAR, while enabling physical actions including motion, autonomous navigation, and natural conversations. The goal of OM1 is to make it easy to create highly capable human-focused robots, that are easy to upgrade and (re)configure to accommodate different physical form factors.
From research to real-world autonomy, a platform that learns, moves, and builds with you.
The BrainPack is designed to be mounted directly onto a robot to bring together mapping, object recognition, remote control, and self charging, giving humanoids and quadrupeds what they need to navigate, remember, and act with purpose.
ROS2, Zenoh, and CycloneDDS. (We recommend Zenoh for all new development).inputs and actions.json5 config files with custom combinations of inputs and actions./config/) to create new behaviors.uv package managerInstall system packages:
For macOS:
brew install portaudio ffmpeg
For Linux:
sudo apt-get update
sudo apt-get install -y portaudio19-dev python3-dev ffmpeg
If you are new to OM1, this is the fastest path to a successful first run using the spot agent.
Spot uses your webcam to detect objects and sends those observations to the LLM. The model then returns move/speak/emotion outputs as logs and API responses.
Spot in this quick start is the default starter configuration to help you understand the OM1 pipeline. It visualizes state updates in the terminal and does not execute robot hardware actions.
Get your API key from OpenMind Portal.
Recommended (shell profile):
export OM_API_KEY="<your_api_key>"
Alternative (project-local):
cp .env.example .env
Then set:
OM_API_KEY=<your_api_key> in .env.
You can also verify or adjust the fallback key location in config/spot.json5.
If you have Docker installed, you can launch the included Prometheus and Grafana stack to monitor real-time AI pipeline metrics such as LLM and ASR latencies:
docker-compose up -d grafana prometheus
Navigate to <http://localhost:3000> in your browser (default login: admin/admin). The OM1 Latency Monitoring dashboard is automatically provisioned and ready to use.
Authentication errors: confirm OM_API_KEY is set and not expired.No module errors: run the command with uv run from the repo root.Camera access issues: grant terminal/IDE camera permissions in OS settings.Address already in use on port 8000: stop the conflicting process or free the port.高质量的开源AI工作流项目
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,OM1 在Agent工作流赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | OM1 |
| 原始描述 | 开源AI工作流:Modular AI runtime for robots。⭐2.8k · Python |
| Topics | 机器人AI工作流 |
| GitHub | https://github.com/OpenMind/OM1 |
| License | MIT |
| 语言 | Python |
收录时间:2026-06-02 · 更新时间:2026-06-02 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端