Skip to content

Commit 960efd2

Browse files
Update api spec (#873)
* YOYO NEW API SPEC! * I have generated the latest library! --------- Co-authored-by: zoo-github-actions-auth[bot] <zoo-github-actions-auth[bot]@users.noreply.github.com>
1 parent 3b17556 commit 960efd2

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

kittycad/src/types.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10514,6 +10514,18 @@ pub enum MlCopilotSupportedModels {
1051410514
#[serde(rename = "o3_mini")]
1051510515
#[display("o3_mini")]
1051610516
O3Mini,
10517+
#[doc = "azure o3-mini"]
10518+
#[serde(rename = "azure_o3_mini")]
10519+
#[display("azure_o3_mini")]
10520+
AzureO3Mini,
10521+
#[doc = "azure gpt-4o"]
10522+
#[serde(rename = "azure_gpt4o")]
10523+
#[display("azure_gpt4o")]
10524+
AzureGpt4O,
10525+
#[doc = "azure gpt-4o-mini"]
10526+
#[serde(rename = "azure_gpt4o_mini")]
10527+
#[display("azure_gpt4o_mini")]
10528+
AzureGpt4OMini,
1051710529
}
1051810530

1051910531
#[doc = "The type of system command that can be sent to the ML Copilot."]

openapitor/tests/types/kittycad.rs.gen

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10323,6 +10323,18 @@ pub enum MlCopilotSupportedModels {
1032310323
#[serde(rename = "o3_mini")]
1032410324
#[display("o3_mini")]
1032510325
O3Mini,
10326+
#[doc = "azure o3-mini"]
10327+
#[serde(rename = "azure_o3_mini")]
10328+
#[display("azure_o3_mini")]
10329+
AzureO3Mini,
10330+
#[doc = "azure gpt-4o"]
10331+
#[serde(rename = "azure_gpt4o")]
10332+
#[display("azure_gpt4o")]
10333+
AzureGpt4O,
10334+
#[doc = "azure gpt-4o-mini"]
10335+
#[serde(rename = "azure_gpt4o_mini")]
10336+
#[display("azure_gpt4o_mini")]
10337+
AzureGpt4OMini,
1032610338
}
1032710339

1032810340
#[doc = "The type of system command that can be sent to the ML Copilot."]

spec.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31085,6 +31085,27 @@
3108531085
"enum": [
3108631086
"o3_mini"
3108731087
]
31088+
},
31089+
{
31090+
"description": "azure o3-mini",
31091+
"type": "string",
31092+
"enum": [
31093+
"azure_o3_mini"
31094+
]
31095+
},
31096+
{
31097+
"description": "azure gpt-4o",
31098+
"type": "string",
31099+
"enum": [
31100+
"azure_gpt4o"
31101+
]
31102+
},
31103+
{
31104+
"description": "azure gpt-4o-mini",
31105+
"type": "string",
31106+
"enum": [
31107+
"azure_gpt4o_mini"
31108+
]
3108831109
}
3108931110
]
3109031111
},

0 commit comments

Comments
 (0)