{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateRunRequest", "title": "CreateRunRequest", "type": "object", "required": [ "assistant_id" ], "properties": { "assistant_id": { "type": "string", "description": "The ID of the assistant to use for this run" }, "model": { "type": "string", "description": "Override the model for this run" }, "instructions": { "type": "string", "nullable": true, "description": "Override the instructions for this run" }, "additional_instructions": { "type": "string", "nullable": true, "description": "Additional instructions appended to the assistant's instructions" }, "tools": { "type": "array", "items": { "type": "object" }, "description": "Override the tools for this run" }, "metadata": { "type": "object", "description": "Key-value metadata for the run" }, "stream": { "type": "boolean", "description": "Whether to stream the run" } } }