Skip to content
Open
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
21 changes: 11 additions & 10 deletions providers/azure-open-ai/o3-mini.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
costs:
- cache_read_input_token_cost: 6.05e-7
input_cost_per_token: 0.00000121
input_cost_per_token: 1.21e-6
input_cost_per_token_batches: 6.05e-7
output_cost_per_token: 0.00000484
output_cost_per_token_batches: 0.00000242
output_cost_per_token: 4.84e-6
output_cost_per_token_batches: 2.42e-6
region: datazone_us
- cache_read_input_token_cost: 6.05e-7
input_cost_per_token: 0.00000121
input_cost_per_token: 1.21e-6
input_cost_per_token_batches: 6.05e-7
output_cost_per_token: 0.00000484
output_cost_per_token_batches: 0.00000242
output_cost_per_token: 4.84e-6
output_cost_per_token_batches: 2.42e-6
region: datazone_eu
- cache_read_input_token_cost: 5.5e-7
input_cost_per_token: 0.0000011
output_cost_per_token: 0.0000044
input_cost_per_token: 1.1e-6
output_cost_per_token: 4.4e-6
region: "*"
deprecationDate: "2026-08-02"
features:
- function_calling
- tool_choice
- prompt_caching
- structured_output
isDeprecated: true
limits:
context_window: 200000
max_input_tokens: 200000
Expand Down Expand Up @@ -53,12 +54,12 @@ provisioning: serverless
removeParams:
- temperature
- top_p
- "n"
- n
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unquoted n may parse as boolean false

Low Severity

The previously quoted "n" in removeParams was changed to bare n. In YAML 1.1 parsers (e.g., PyYAML, Ruby YAML), bare n is interpreted as boolean false rather than the string "n". While the project's own build tooling uses YAML 1.2 parsers (js-yaml 4.x, yaml 2.x) where this is fine, any downstream YAML 1.1 consumer would silently get the wrong type. Most other files in this directory consistently keep "n" quoted for this reason.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e41a66c. Configure here.

- stream
- max_tokens
sources:
- https://learn.microsoft.com/en-us/azure/ai-foundry/foundry-models/concepts/models-sold-directly-by-azure
status: active
status: deprecated
supportedModes:
- chat
thinking: true
Loading