The ROS-LLM framework.
Please see the following links
agent_comm
: communication interface with the AI agent.behavior_executor
: contains nodes for executing behaviours in ROS produced by an LLM.rosllm_msgs
: common message types used by the ROSLLM framework.rosllm_srvs
: common service types used by the ROSLLM framework.- External packages are found in the
extern
directory:BehaviorTree/BehaviorTree.ROS
:BehaviorTree.CPP
utilities to work with ROS.ros/executive_smach
: A procedural python-based task execution framework with ROS integration.
First, please ensure ROS Noetic and catkin_tools are installed. Then step through the following steps:
- Open a new terminal and ensure ROS Noetic is sourced:
source /opt/ros/noetic/setup.bash
- Create catkin workspace:
mkdir -p rosllm_ws/src
- Change directory:
cd rosllm_ws
- Initialize workspace:
catkin init
- Clone HEBO:
- IMPORTANT: make sure you do not clone the
HEBO
package in thesrc
directory. It should be cloned into therosllm_ws/
directory. - IMPORTANT: also make sure to include the
--recursive
flag when cloning. - Clone via ssh:
git clone --recursive git@github.com:huawei-noah/HEBO.git
- Clone via https:
git clone --recursive https://github.com/huawei-noah/HEBO.git
- Change directory:
cd src
- Create a symbolic link:
ln -s ../HEBO/ROSLLM/
- Install dependancies:
rosdep install -i -r -y --from-paths . --ignore-src
pip3 install openai PyYAML gradio
- Build workspace:
catkin build -s
Currently, only ROS Noetic is supported. Support for ROS2 is planned for the future.
If you use the ROS-LLM framework in your work, please cite
@misc{mower2024rosllmrosframeworkembodied,
title={ROS-LLM: A ROS framework for embodied AI with task feedback and structured reasoning},
author={Christopher E. Mower and Yuhui Wan and Hongzhan Yu and Antoine Grosnit and Jonas Gonzalez-Billandon and Matthieu Zimmer and Jinlong Wang and Xinyu Zhang and Yao Zhao and Anbang Zhai and Puze Liu and Davide Tateo and Cesar Cadena and Marco Hutter and Jan Peters and Guangjian Tian and Yuzheng Zhuang and Kun Shao and Xingyue Quan and Jianye Hao and Jun Wang and Haitham Bou-Ammar},
year={2024},
eprint={2406.19741},
archivePrefix={arXiv},
primaryClass={cs.RO},
url={https://arxiv.org/abs/2406.19741},
}