get_site_info
Retrieve site information for GS cleaning robots including building layouts, floor plans, and map data to support navigation and operational planning.
Instructions
Gets site information for a specific robot.
Based on: https://developer.gs-robot.com/zh_CN/Robot%20Task%20Service/Get%20Site%20Info
Args:
robot_id: The ID of the target robot.
Returns:
A dictionary containing site information including buildings, floors, and maps.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| robot_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"robot_id": {
"title": "Robot Id",
"type": "string"
}
},
"required": [
"robot_id"
],
"type": "object"
}