Skip to content
Open
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
6 changes: 6 additions & 0 deletions providers/xai/grok-3-mini-fast-high.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ costs:
features:
- function_calling
- structured_output
limits:
context_window: 1000000
modalities:
input:
- text
Expand All @@ -15,6 +17,10 @@ modalities:
- text
mode: chat
model: grok-3-mini-fast-high
provisioning: serverless
sources:
- https://docs.x.ai/developers/models/grok-3-mini-fast
status: active
supportedModes:
- chat
thinking: true
6 changes: 6 additions & 0 deletions providers/xai/grok-3-mini-high-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ costs:
features:
- function_calling
- structured_output
limits:
context_window: 1000000
modalities:
input:
- text
Expand All @@ -15,6 +17,10 @@ modalities:
- text
mode: chat
model: grok-3-mini-high-beta
provisioning: serverless
sources:
- https://docs.x.ai/developers/models/grok-3-mini-fast
status: active
supportedModes:
- chat
thinking: true
19 changes: 17 additions & 2 deletions providers/xai/grok-3-mini-high.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,22 @@ costs:
input_cost_per_token: 1.25e-6
output_cost_per_token: 2.5e-6
region: "*"
tiered_pricing:
cache_read:
- cost_per_token: 4e-7
from: 200000
input:
- cost_per_token: 2.5e-6
from: 200000
output:
- cost_per_token: 5e-6
from: 200000
features:
- function_calling
- structured_output
- prompt_caching
limits:
context_window: 1000000
modalities:
input:
- text
Expand All @@ -15,6 +28,8 @@ modalities:
- text
mode: chat
model: grok-3-mini-high
sources:
- https://docs.x.ai/developers/models/grok-3-mini-fast
provisioning: serverless
status: active
supportedModes:
- chat
thinking: true
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Sources field accidentally removed from model YAML

Medium Severity

The sources field (previously pointing to https://docs.x.ai/developers/models/grok-3-mini-fast) was deleted from grok-3-mini-high.yaml. The two sibling model files updated in this same PR (grok-3-mini-fast-high.yaml and grok-3-mini-high-beta.yaml) both retain their sources field. This looks like an unintentional removal during the update, causing loss of provenance metadata for this model.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 3ef7309. Configure here.

2 changes: 2 additions & 0 deletions providers/xai/grok-4.3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ costs:
input_cost_per_token: 1.25e-6
output_cost_per_token: 2.5e-6
region: "*"
features:
- prompt_caching
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Incomplete features list added to grok-4.3 model

Medium Severity

The newly added features section in grok-4.3.yaml only includes prompt_caching, while the corresponding grok-4.3-latest.yaml (same model, same pricing) declares function_calling, tool_choice, structured_output, system_messages, and prompt_caching. Adding an explicit but incomplete features list is potentially worse than having none, because consumers may treat the presence of the key as authoritative and conclude the model lacks capabilities it actually supports.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 3ef7309. Configure here.

limits:
context_window: 1000000
modalities:
Expand Down
Loading