Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions kittycad/models/ml_copilot_supported_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
21 changes: 21 additions & 0 deletions spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
]
},
Expand Down
Loading