Tool API
Structure of Tool Query and Response
class ToolQuery(Query):
query_class: str = "tool"
tool_calls: List[Dict[str, Union[str, Any]]]
class Config:
arbitrary_types_allowed = Trueclass ToolResponse(Response):
response_class: str = "tool"
response_message: Optional[str] = None
finished: bool = False
error: Optional[str] = None
status_code: int = 200Available Tool Management Commands
# View all tools available in the AIOS Tool Hub
list-toolhub-toolsLast updated