Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,41 +72,4 @@ Launch with an explicit plan path:
```bash
source install/setup.bash
ros2 launch fabric_server fabric.launch.py plan_file_path:=/absolute/path/to/plan.xml
```

## Composed launch

Composed launch is a more efficient approach to spin up a system under a single process. Positives are IPC via shared memory, providing lower latency and optimized resoirce usage. Draw back of this approach is that, it becomes harder for debugging and fault tolerence.

Use independent launch files with standard node based implementations for debugging. For deployment, utilize composed launch where ever possible.

We provide several composed launch files for launching the system.

### Non generative launch

This launch file starts Fabric Server and [Capabilities2 Server](https://github.com/CollaborativeRoboticsLab/capabilities2). Suitable for non-generative use with predefined plans.

```bash
source install/setup.bash
ros2 launch fabric_server nongenerative.launch.py
```

### Generative launch

This launch file starts Fabric Server, [Capabilities2 Server](https://github.com/CollaborativeRoboticsLab/capabilities2), and [prompt_tools](https://github.com/CollaborativeRoboticsLab/prompt_tools). Suitable for generative use without perception.

```bash
export OPENAI_API_KEY=
source install/setup.bash
ros2 launch fabric_server generative.launch.py
```

### Generative launch with perception

This launch file starts Fabric Server, [Capabilities2 Server](https://github.com/CollaborativeRoboticsLab/capabilities2), [prompt_tools](https://github.com/CollaborativeRoboticsLab/prompt_tools), and [Perception Server](https://github.com/CollaborativeRoboticsLab/perception). Suitable for generative use with perception.

```bash
export OPENAI_API_KEY=
source install/setup.bash
ros2 launch fabric_server generative_perception.launch.py
```
48 changes: 0 additions & 48 deletions fabric_server/launch/generative.launch.py

This file was deleted.

55 changes: 0 additions & 55 deletions fabric_server/launch/generative_perception.launch.py

This file was deleted.

41 changes: 0 additions & 41 deletions fabric_server/launch/nongenerative.launch.py

This file was deleted.

Loading