Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file
Repository Summary
| Description | |
| Checkout URI | https://github.com/openmindagi/om1.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-03-15 |
| Dev Status | UNKNOWN |
| Released | UNRELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Packages
README
Technical Paper | Documentation | X
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.
Capabilities of OM1
- Modular Architecture: Designed with Python for simplicity and seamless integration.
- Data Input: Easily handles new data and sensors.
-
Hardware Support via Plugins: Supports new hardware through plugins for API endpoints and specific robot hardware connections to
ROS2,Zenoh, andCycloneDDS. (We recommendZenohfor all new development). - Web-Based Debugging Display: Monitor the system in action with WebSim (available at http://localhost:8000/) for easy visual debugging.
- Pre-configured Endpoints: Supports Text-to-Speech, multiple LLMs from OpenAI, xAI, DeepSeek, Anthropic, Meta, Gemini, NearAI, Ollama (local), and multiple Visual Language Models (VLMs) with pre-configured endpoints for each service.
Architecture Overview
Getting Started
To get started with OM1, let’s run the Spot agent. Spot uses your webcam to capture and label objects. These text captions are then sent to the LLM, which returns movement, speech and face action commands. These commands are displayed on WebSim along with basic timing and other debugging information.
Package Management and VENV
You will need the uv package manager.
Install Dependencies
For macOS
brew install portaudio ffmpeg
For Linux
sudo apt-get update
sudo apt-get install portaudio19-dev python3-dev ffmpeg
Clone the Repo
git clone https://github.com/OpenMind/OM1.git
cd OM1
git submodule update --init
uv venv
Obtain an OpenMind API Key
Obtain your API Key at OpenMind Portal.
- Create your account on OpenMind Portal if you haven’t yet.
- Go to the dashboard and create a new API key.
- Copy the generated API key.
- Edit
config/spot.json5and replace theopenmind_freeplaceholder with your API key. Or, configure it in the.envfile using this command -cp .env.example .envand add your key to the.env.
Alternatively, you can set your API key in the .bashrc file
vi ~/.bashrc # for Linux
vi ~/.zshrc # for macOS
Add the following to the file
export OM_API_KEY="<your_api_key>"
source ~/.bashrc # for linux
source ~/.zshrc # for macOS
OMCU
OMCU is the computational unit for billing on OpenMind’s platform. The free plan provides 50 OMCU renewed monthly.
Upgrade your plan here for additional credits.
Launching OM1
Run
uv run src/run.py spot
After launching OM1, the Spot agent will interact with you and perform (simulated) actions. For more help connecting OM1 to your robot hardware, see getting started.
Note: This is just an example agent configuration. If you want to interact with the agent and see how it works, make sure ASR and TTS are configured in spot.json5.
What’s Next?
- Try out some examples
- Add new
inputsandactions.
File truncated at 100 lines see the full file
CONTRIBUTING
Contributing to OM1
We welcome contributions from the community! OM1 is an open-source project, and we appreciate your help in making it better. Whether you’re fixing bugs, adding features, improving documentation, or suggesting new ideas, your contributions are valuable.
Before contributing, please take a moment to read through the following guidelines. This helps streamline the process and ensures everyone is on the same page.
PRs must clearly state the problem being solved. Changes without a clear problem statement may be closed without review.
Ways to Contribute:
-
Report Bugs: If you find a bug, please open an issue on GitHub. Be sure to include:
- A clear and concise description of the bug.
- Steps to reproduce the bug.
- Your operating system and Python version.
- Relevant error messages or stack traces.
- Screenshots (if applicable).
-
Suggest Features: Have an idea for a new feature or improvement? Open an issue on GitHub and describe your suggestion. Explain the motivation behind the feature and how it would benefit OM1 users. We encourage discussion on feature requests before implementation.
-
Improve Documentation: Good documentation is crucial. If you find anything unclear, incomplete, or outdated in the documentation, please submit a pull request with your changes. This includes the README, docstrings, and any other documentation files. Visit OM1 docs, and source code.
-
Fix Bugs: Browse the open issues and look for bugs labeled “bug” or “help wanted.” If you want to tackle a bug, comment on the issue to let us know you’re working on it.
-
Implement Features: Check the open issues for features labeled “enhancement” or “bounty” or “help wanted”. It’s best to discuss your approach in the issue comments before starting significant development.
-
Write Tests: OM1 aims for high test coverage. If you’re adding new code, please include corresponding tests. If you find areas with insufficient test coverage, adding tests is a great contribution.
- Code Review: Reviewing pull requests is a valuable way to contribute. It helps ensure code quality and maintainability.
Out of Scope
-
Documentation Translations: Multilingual versions of documentation are not supported. PRs translating docs will be closed.
-
Stylistic or Minor Changes: Changes that only affect formatting, variable names, or style without functional improvement are out of scope.
-
Trivial or Cosmetic Fixes: Small changes that do not fix bugs or meaningfully improve usability are out of scope.
-
Opinion-Driven Refactors: Refactors made solely for personal style or preference without measurable benefit are out of scope.
Contribution Workflow (Pull Requests):
Please open an issue for discussion before submitting PRs that introduce new features, refactors, stylistic changes, or dependency upgrades. PRs of this type without prior discussion may be closed. Once approval is granted, you can start working and open a PR.
-
Fork the Repository: Click the “Fork” button on the top-right of the OM1 repository page to create your own copy.
-
Clone Your Fork with CLI:
git clone https://github.com/<your-username>/OM1.git
cd OM1
(Replace `<your-username>` with your GitHub username.)
-
Setup Development Environment Refer documentation to setup your development environment.
-
Create a Branch: Create a new branch for your work. Use a descriptive name that reflects the purpose of your changes (e.g.,
fix-bug-xyz,add-feature-abc,docs-improve-readme).
git checkout -b your-branch-name
-
Make Changes: Make your code changes, add tests, and update documentation as needed.
-
Commit Changes: Commit your changes with clear and concise commit messages. Follow the Conventional Commits specification if possible (e.g.,
feat: Add new feature,fix: Correct bug in module X,docs: Update README).
git commit -m "feat: Add support for XYZ"
-
Local Testing
Install pre-commit and execute
pre-commit install. This ensures that pre-commit checks run before each commit. Alternatively, you can manually trigger all checks by running
pre-commit run --all-files
To unit test the system, run
uv run pytest --log-cli-level=DEBUG -s
- Push Changes: Once all the tests pass locally, push your branch to your forked repository.
git push origin your-branch-name
-
Create a Pull Request (PR): Go to the original OM1 repository on GitHub. You should see a prompt to create a pull request from your newly pushed branch. Click “Compare & pull request.”
-
Write a Clear PR Description: * Describe the purpose of your pull request. * Link to any relevant issues it addresses (e.g., “Closes #123”). * Explain your changes and your design choices. * Include any relevant screenshots or GIFs (if applicable).
-
Request Review: Your pull request will be reviewed by the maintainers. Be prepared to address any feedback or make further changes.
-
Merge: Once your pull request is reviewed and approved, it will be merged into the main branch.
Coding Style and Conventions:
-
Code Style: Follow the PEP 8 style guide. We may use a code formatter like
blackorruff(check thepyproject.tomlorsetup.cfgfor project-specific configuration). Runpre-commit run --all-filesbefore committing.
File truncated at 100 lines see the full file