Skip to content

Commit

Permalink
chore: apply code review suggestions
Browse files Browse the repository at this point in the history
Co-authored-by: Bartłomiej Boczek <[email protected]>
  • Loading branch information
maciejmajek and boczekbartek committed Dec 4, 2024
1 parent cd8008c commit eb4cb6c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions docs/debugging_assistant.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ The ROS 2 Debugging Assistant is an interactive tool that helps developers inspe
- Interactive chat interface for debugging ROS 2 systems
- Real-time streaming of responses and tool executions
- Support for common ROS 2 debugging commands:
- Topic inspection and manipulation
- Service inspection
- Node information
- Action server details
- Interface inspection
- `ros2 topic`: topic inspection and manipulation
- `ros2 service`: service inspection and calling
- `ros2 node`: node information
- `ros2 action`: action server details and goal sending
- `ros2 interface`: interface inspection
- `ros2 param`: checking and setting parameters

## Running the Assistant

Expand Down
2 changes: 1 addition & 1 deletion src/rai/rai/tools/ros/debugging.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run_command(cmd: List[str], timeout: int = 5):

@tool
def ros2_action(
command: Literal["info", "list", "type"],
command: Literal["info", "list", "type", "send_goal"],
arguments: Optional[List[str]] = None,
timeout: int = 5,
):
Expand Down

0 comments on commit eb4cb6c

Please sign in to comment.