create_timeline
Allows AI assistants to create a new timeline in DaVinci Resolve by specifying its name.
Instructions
Create a new timeline with the given name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name for the new timeline |
Implementation Reference
- Schema definition for the 'create_timeline' tool, including its input schema requiring a 'name' parameter of type string.
types.Tool( name="create_timeline", description="Create a new timeline with the given name", inputSchema={ "type": "object", "properties": { "name": { "type": "string", "description": "The name for the new timeline", } }, "required": ["name"], }, ),