Update api spec (#406)
* 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
7663ef0a1a
commit
ebcc2ff650
File diff suppressed because it is too large
Load Diff
@ -305,12 +305,16 @@ class OptionTextToCadMultiFileIteration(BaseModel):
|
||||
|
||||
id: Uuid
|
||||
|
||||
kcl_version: Optional[str] = None
|
||||
|
||||
model: TextToCadModel
|
||||
|
||||
model_version: str
|
||||
|
||||
outputs: Optional[Dict[str, str]] = None
|
||||
|
||||
project_name: Optional[str] = None
|
||||
|
||||
prompt: Optional[str] = None
|
||||
|
||||
source_ranges: List[SourceRangePrompt]
|
||||
|
@ -23,12 +23,16 @@ class TextToCadMultiFileIteration(BaseModel):
|
||||
|
||||
id: Uuid
|
||||
|
||||
kcl_version: Optional[str] = None
|
||||
|
||||
model: TextToCadModel
|
||||
|
||||
model_version: str
|
||||
|
||||
outputs: Optional[Dict[str, str]] = None
|
||||
|
||||
project_name: Optional[str] = None
|
||||
|
||||
prompt: Optional[str] = None
|
||||
|
||||
source_ranges: List[SourceRangePrompt]
|
||||
|
20
spec.json
20
spec.json
@ -16621,6 +16621,11 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"kcl_version": {
|
||||
"nullable": true,
|
||||
"description": "The version of kcl to use. If empty, the latest version will be used.",
|
||||
"type": "string"
|
||||
},
|
||||
"model": {
|
||||
"description": "The model being used.",
|
||||
"allOf": [
|
||||
@ -16640,6 +16645,11 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"project_name": {
|
||||
"nullable": true,
|
||||
"description": "The project name. This is used to tie the prompt to a project. Which helps us make our models better over time.",
|
||||
"type": "string"
|
||||
},
|
||||
"prompt": {
|
||||
"nullable": true,
|
||||
"description": "The prompt for the overall changes. This is optional if you only want changes on specific source ranges. This will apply to all the files.",
|
||||
@ -31574,6 +31584,11 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"kcl_version": {
|
||||
"nullable": true,
|
||||
"description": "The version of kcl to use. If empty, the latest version will be used.",
|
||||
"type": "string"
|
||||
},
|
||||
"model": {
|
||||
"description": "The model being used.",
|
||||
"allOf": [
|
||||
@ -31593,6 +31608,11 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"project_name": {
|
||||
"nullable": true,
|
||||
"description": "The project name. This is used to tie the prompt to a project. Which helps us make our models better over time.",
|
||||
"type": "string"
|
||||
},
|
||||
"prompt": {
|
||||
"nullable": true,
|
||||
"description": "The prompt for the overall changes. This is optional if you only want changes on specific source ranges. This will apply to all the files.",
|
||||
|
Reference in New Issue
Block a user