Skip to content

Commit aab4d56

Browse files
committed
Replace openset group with perception
1 parent 0216e66 commit aab4d56

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/poetry-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
jackd -d dummy -r 44100 &
4444
4545
- name: Install python dependencies
46-
run: poetry install --with openset,nomad,s2s,simbench
46+
run: poetry install --with perception,nomad,s2s,simbench
4747

4848
- name: Update rosdep
4949
shell: bash

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ WORKDIR /rai
3333
RUN git clone https://github.com/RobotecAI/rai.git .
3434

3535
# Install Python dependencies with Poetry
36-
RUN poetry install --with nomad,openset
36+
RUN poetry install --with nomad,perception
3737

3838
# Install ROS dependencies
3939
RUN /bin/bash -c '. /opt/ros/${ROS_DISTRO}/setup.bash && \

docs/demos/manipulation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ manipulation techniques.
2222
2. Download additional dependencies:
2323

2424
```shell
25-
poetry install --with openset
25+
poetry install --with perception
2626
vcs import < demos.repos
2727
rosdep install --from-paths src/examples/rai-manipulation-demo/ros2_ws/src --ignore-src -r -y
2828
```

docs/demos/rosbot_xl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ platform in a nice apartment.
3030
sudo apt install ros-${ROS_DISTRO}-navigation2 ros-${ROS_DISTRO}-nav2-bringup
3131
vcs import < demos.repos
3232
rosdep install --from-paths src --ignore-src -r -y
33-
poetry install --with openset
33+
poetry install --with perception
3434
```
3535

3636
!!! tip "Alternative: Demo source build"
@@ -70,7 +70,7 @@ platform in a nice apartment.
7070
7171
The rosbot demo utilizes several components:
7272
73-
1. Vision processing using Grounded SAM 2 and Grounding DINO for object detection and segmentation. See [RAI OpenSet Vision](../extensions/openset.md).
73+
1. Vision processing using Grounded SAM 2 and Grounding DINO for object detection and segmentation. See [RAI perception](../extensions/.md).
7474
2. RAI agent to process the request and interact with environment via [tool-calling](https://python.langchain.com/docs/concepts/tool_calling/) mechanism.
7575
3. Navigation is enabled via [nav2 toolkit](../API_documentation/langchain_integration/ROS_2_tools.md#nav2), which interacts with [ROS 2 nav2](https://docs.nav2.org/) asynchronously by calling [ros2 actions](https://docs.ros.org/en/jazzy/Tutorials/Beginner-CLI-Tools/Understanding-ROS2-Actions/Understanding-ROS2-Actions.html).
7676
4. Embodiment of the Rosbot is achieved using [RAI Whoami](../tutorials/create_robots_whoami.md) module. This makes RAI agent aware of the hardware platform and its capabilities.

src/rai_core/rai/frontend/configurator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ def additional_features():
715715
716716
To install OpenSET dependencies, run:
717717
```bash
718-
poetry install --with openset
718+
poetry install --with perception
719719
```
720720
721721
This will install:

src/rai_extensions/rai_perception/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rosdep install --from-paths src --ignore-src -r
2222
In the base directory of the `RAI` package install dependencies:
2323

2424
```
25-
poetry install --with openset
25+
poetry install --with perception
2626
```
2727

2828
Source the ros installation

0 commit comments

Comments
 (0)