get_objects
Retrieve all objects from a specified FreeCAD document to review or modify. Returns a list of objects and a document screenshot.
Instructions
Get all objects in a document. You can use this tool to get the objects in a document to see what you can check or edit.
Args:
    doc_name: The name of the document to get the objects from.
Returns:
    A list of objects in the document and a screenshot of the document.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| doc_name | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "doc_name": {
      "title": "Doc Name",
      "type": "string"
    }
  },
  "required": [
    "doc_name"
  ],
  "title": "get_objectsArguments",
  "type": "object"
}