create_run
Initiate a new protocol run on Opentrons robots by specifying the robot IP, protocol ID, and optional runtime parameters using this tool.
Instructions
Create a new protocol run on the robot
Input Schema
Name | Required | Description | Default |
---|---|---|---|
protocol_id | Yes | ID of protocol to run | |
robot_ip | Yes | Robot IP address | |
run_time_parameters | No | Optional runtime parameter values |
Input Schema (JSON Schema)
{
"properties": {
"protocol_id": {
"description": "ID of protocol to run",
"type": "string"
},
"robot_ip": {
"description": "Robot IP address",
"type": "string"
},
"run_time_parameters": {
"description": "Optional runtime parameter values",
"type": "object"
}
},
"required": [
"robot_ip",
"protocol_id"
],
"type": "object"
}