From 11c867b8c5206163dd961ab879d3a88f0c8afdea Mon Sep 17 00:00:00 2001 From: "zoo-github-actions-auth[bot]" Date: Wed, 12 Nov 2025 20:48:16 +0000 Subject: [PATCH 1/2] YOYO NEW API SPEC! --- spec.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/spec.json b/spec.json index 7d54afeac..e8ceb644e 100644 --- a/spec.json +++ b/spec.json @@ -31085,6 +31085,27 @@ "enum": [ "o3_mini" ] + }, + { + "description": "azure o3-mini", + "type": "string", + "enum": [ + "azure_o3_mini" + ] + }, + { + "description": "azure gpt-4o", + "type": "string", + "enum": [ + "azure_gpt4o" + ] + }, + { + "description": "azure gpt-4o-mini", + "type": "string", + "enum": [ + "azure_gpt4o_mini" + ] } ] }, From 205e7f7161b3ae1afeacca4a0c066a984f1055ec Mon Sep 17 00:00:00 2001 From: "zoo-github-actions-auth[bot]" Date: Wed, 12 Nov 2025 20:48:57 +0000 Subject: [PATCH 2/2] I have generated the latest API! --- kittycad/models/ml_copilot_supported_models.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/kittycad/models/ml_copilot_supported_models.py b/kittycad/models/ml_copilot_supported_models.py index 66de12358..21a102518 100644 --- a/kittycad/models/ml_copilot_supported_models.py +++ b/kittycad/models/ml_copilot_supported_models.py @@ -24,5 +24,17 @@ class MlCopilotSupportedModels(str, Enum): O3_MINI = "o3_mini" + """# azure o3-mini""" # noqa: E501 + + AZURE_O3_MINI = "azure_o3_mini" + + """# azure gpt-4o""" # noqa: E501 + + AZURE_GPT4O = "azure_gpt4o" + + """# azure gpt-4o-mini""" # noqa: E501 + + AZURE_GPT4O_MINI = "azure_gpt4o_mini" + def __str__(self) -> str: return str(self.value)