analyze_generation_feedback
Analyze a generated 3D model to identify issues and return specific constraints for improving the generation prompt.
Instructions
Analyze a generated model and get feedback for improvement.
Returns feedback with specific constraints to add to the
generation prompt to fix identified issues.
Args:
file_path: Path to the generated model file.
original_prompt: The original generation prompt.
failure_mode: Optional failure mode if the model was printed
and failed (e.g. ``"adhesion"``, ``"spaghetti"``).
max_overhang_angle: Maximum overhang angle in degrees.
min_wall_thickness: Minimum wall thickness in mm.
has_bridges: Whether the model has bridge features.
has_floating_parts: Whether the model has disconnected parts.
non_manifold: Whether the mesh is non-manifold.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| has_bridges | No | ||
| failure_mode | No | ||
| non_manifold | No | ||
| original_prompt | Yes | ||
| has_floating_parts | No | ||
| max_overhang_angle | No | ||
| min_wall_thickness | No |