generate_task_report_png
Generate PNG map visualizations for M-line task reports from GS cleaning robots using serial number and report ID to document cleaning operations and navigation paths.
Instructions
Generates a PNG map for M-line task report.
Args:
serial_number: The serial number of the target robot.
report_id: The ID of the task report.
Returns:
A dictionary containing the map generation result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | ||
| report_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"report_id": {
"title": "Report Id",
"type": "string"
},
"serial_number": {
"title": "Serial Number",
"type": "string"
}
},
"required": [
"serial_number",
"report_id"
],
"type": "object"
}