Skip to content

Commit 8fdcd89

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

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

kittycad/models/ml_copilot_supported_models.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,17 @@ class MlCopilotSupportedModels(str, Enum):
2424

2525
O3_MINI = "o3_mini"
2626

27+
"""# azure o3-mini""" # noqa: E501
28+
29+
AZURE_O3_MINI = "azure_o3_mini"
30+
31+
"""# azure gpt-4o""" # noqa: E501
32+
33+
AZURE_GPT4O = "azure_gpt4o"
34+
35+
"""# azure gpt-4o-mini""" # noqa: E501
36+
37+
AZURE_GPT4O_MINI = "azure_gpt4o_mini"
38+
2739
def __str__(self) -> str:
2840
return str(self.value)

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)