get_run_status
Check the status of a specific run on Opentrons robots by providing the robot IP address and run ID to monitor progress and ensure operational efficiency.
Instructions
Get detailed status of a specific run
Input Schema
Name | Required | Description | Default |
---|---|---|---|
robot_ip | Yes | Robot IP address | |
run_id | Yes | Run ID to check |
Input Schema (JSON Schema)
{
"properties": {
"robot_ip": {
"description": "Robot IP address",
"type": "string"
},
"run_id": {
"description": "Run ID to check",
"type": "string"
}
},
"required": [
"robot_ip",
"run_id"
],
"type": "object"
}