insert_part_from_library
Insert predefined 3D parts into FreeCAD designs using relative paths from the parts library addon. Simplifies CAD workflows by enabling quick part integration and generating design screenshots for verification.
Instructions
Insert a part from the parts library addon.
Args:
relative_path: The relative path of the part to insert.
Returns:
A message indicating the success or failure of the part insertion and a screenshot of the object.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
relative_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"relative_path": {
"title": "Relative Path",
"type": "string"
}
},
"required": [
"relative_path"
],
"title": "insert_part_from_libraryArguments",
"type": "object"
}