Files
kittycad.py/kittycad/models/text_to_cad_multi_file_iteration_body.py
zoo-github-actions-auth[bot] 4aa6b69d5c Update api spec (#375)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-02-10 16:55:38 -08:00

14 lines
328 B
Python

from typing import List
from pydantic import BaseModel, ConfigDict
from ..models.source_range_prompt import SourceRangePrompt
class TextToCadMultiFileIterationBody(BaseModel):
"""Body for generating models from text."""
source_ranges: List[SourceRangePrompt]
model_config = ConfigDict(protected_namespaces=())