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
25 changes: 25 additions & 0 deletions providers/azure-open-ai/gpt-chat-latest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
features:
- function_calling
- parallel_function_calling
- structured_output

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 feature flags

Medium Severity

features omits system_messages, tool_choice, and prompt_caching, which are present on OpenAI chat-latest and all Azure gpt-chat-latest-* siblings. Feature detection will under-report capabilities for this alias.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9d7a653. Configure here.

limits:
context_window: 400000
max_input_tokens: 272000
max_output_tokens: 128000
max_tokens: 128000

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Azure token limits mismatch

Medium Severity

limits use a 400000 context window and 272000 max input tokens, matching OpenAI chat-latest, but Azure Foundry documents gpt-chat-latest at a 200000 context window with 128000 max output. Request sizing based on these limits can exceed Azure's actual window.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9d7a653. Configure here.

modalities:
input:
- text
output:
- text

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Missing image input modality

Medium Severity

modalities.input lists only text, but Azure's gpt-chat-latest catalog and related configs (openai/chat-latest, gpt-chat-latest-2026-05-05, gpt-chat-latest-2026-05-28, gpt-chat-latest-2026-06-24) all include image input. The registry will treat this multimodal model as text-only.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9d7a653. Configure here.

mode: chat
model: gpt-chat-latest
provisioning: serverless
removeParams:
- reasoning_effort
retirementDate: "2026-12-02"
status: preview
supportedModes:
- chat
Comment thread
cursor[bot] marked this conversation as resolved.
- responses
thinking: true
Loading