| 112 | images: list[str] = Field( |
| 113 | default_factory=list, |
| 114 | description="Input images as base64/data URLs, HTTP(S) URLs, or server-local paths", |
| 115 | ) |
| 116 | seed: Optional[int] = Field(None, description="Non-negative seed; omitted or null defaults to 42") |
| 117 | visualize: bool = Field(True, description="Generate an official-style visualization when supported") |
| 118 | postprocess_3d: bool = Field(False, description="Generate a GLB scene for recon3d") |
| 119 |
no outgoing calls
no test coverage detected