Batch Create Entities
entity_batch_createCreate multiple AutoCAD entities in a single call to minimize overhead during batch CAD operations.
Instructions
Create multiple entities in a single call for better performance.
Each entity dict must have a 'type' key and the parameters for that type. Example: [{"type": "line", "x1": 0, "y1": 0, "x2": 100, "y2": 0}, {"type": "circle", "cx": 50, "cy": 50, "radius": 25}]
Denser than cad_batch for many entities of the same kind (no per-step tool name), and usable as one step of a cad_batch. Use cad_batch when the calls differ, must be ordered, or must feed each other.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entities | Yes | List of entity definitions. Each dict must have 'type' and type-specific params. Types: line, circle, arc, polyline, rectangle, text, point |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||