Update api spec (#404)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2025-03-29 17:13:59 -07:00
committed by GitHub
parent 7e5d830ef9
commit 69b0706d4a
5 changed files with 749 additions and 731 deletions

View File

@ -6,12 +6,14 @@ from ..models.source_range_prompt import SourceRangePrompt
class TextToCadMultiFileIterationBody(BaseModel):
"""Body for generating models from text."""
"""Body for iterating on models from text prompts."""
kcl_version: Optional[str] = None
project_name: Optional[str] = None
source_ranges: List[SourceRangePrompt]
prompt: Optional[str] = None
source_ranges: Optional[List[SourceRangePrompt]] = None
model_config = ConfigDict(protected_namespaces=())