Update api spec (#378)
* 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:
committed by
GitHub
parent
f61c4b304c
commit
17c78d3b63
@ -1,4 +1,4 @@
|
||||
from typing import List
|
||||
from typing import List, Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
@ -8,6 +8,10 @@ from ..models.source_range_prompt import SourceRangePrompt
|
||||
class TextToCadMultiFileIterationBody(BaseModel):
|
||||
"""Body for generating models from text."""
|
||||
|
||||
kcl_version: Optional[str] = None
|
||||
|
||||
project_name: Optional[str] = None
|
||||
|
||||
source_ranges: List[SourceRangePrompt]
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
||||
|
Reference in New Issue
Block a user