Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ requires-python = ">=3.9, <4"
dependencies = [
"PyYAML==6.0.1",
"python-dotenv>=1.0.1",
"langchain==0.3.2",
"langchain-community==0.3.1",
"langchain-core==0.3.9",
"langchain==0.3.23",
"langchain-community==0.3.21",
"langchain-core==0.3.52",
"langchain-openai==0.2.2",
"langchain-ollama==0.2.0",
"pydantic",
Expand Down
6 changes: 3 additions & 3 deletions src/rosa/tools/ros2.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def get_entities(


@tool
def ros2_node_list(pattern: str = None, blacklist: Optional[List[str]] = None) -> dict:
def ros2_node_list(pattern: Optional[str] = None, blacklist: Optional[List[str]] = None) -> dict:
"""
Get a list of ROS2 nodes running on the system.

Expand All @@ -101,7 +101,7 @@ def ros2_node_list(pattern: str = None, blacklist: Optional[List[str]] = None) -


@tool
def ros2_topic_list(pattern: str = None, blacklist: Optional[List[str]] = None) -> dict:
def ros2_topic_list(pattern: Optional[str] = None, blacklist: Optional[List[str]] = None) -> dict:
"""
Get a list of ROS2 topics.

Expand Down Expand Up @@ -158,7 +158,7 @@ def ros2_topic_echo(

@tool
def ros2_service_list(
pattern: str = None, blacklist: Optional[List[str]] = None
pattern: Optional[str] = None, blacklist: Optional[List[str]] = None
) -> dict:
"""
Get a list of ROS2 services.
Expand Down