GPT-4.1 is retiring in May 2026. GPT-4.1-mini follows in June. If your Power BI Copilot or AI Functions are using these models — and they are, by default — you need to act.
This is not a crisis. Microsoft handles the Copilot transition automatically. But if you have custom AI Functions configurations, SynapseML pipelines, or Foundry deployments, you need to update them before the deadline.
This guide covers what is changing, what GPT-5.5 brings, and the specific actions your Power BI team needs to take.
The Model Timeline
Here is the GPT model evolution and what is available in Foundry as of May 2026:
| Model | Release | Context | Status |
|---|---|---|---|
| GPT-4o | 2024-05 | 128K | Available, stable |
| GPT-4o mini | 2024-07 | 128K | Available, stable |
| GPT-4.1 | 2025-04 | 1M | Retiring May 2026 |
| GPT-4.1-mini | 2025-04 | 1M | Retiring June 2026 |
| GPT-4.1-nano | 2025-04 | 1M | Available |
| GPT-5 | 2025-08 | 256K | Available |
| GPT-5-mini | 2025-08 | 256K | Available |
| GPT-5.1 | 2025-11 | 512K | Available |
| GPT-5.2 | 2025-12 | 512K | Available |
| GPT-5.3 | 2026-02 | 768K | Available |
| GPT-5.4 | 2026-03 | 1M | Available |
| GPT-5.4-mini | 2026-03 | 1M | Available |
| GPT-5.5 | 2026-04 | 1,050K | Latest, flagship |
Key dates:
- May 2026: GPT-4.1 retirement
- June 2026: GPT-4.1-mini retirement
- Now: GPT-5.5 is the latest flagship model
What GPT-5.5 Brings
GPT-5.5, released April 2026, is the most capable GPT model to date. Here is what matters for Power BI:
1,050,000 Token Context Window
GPT-5.5 can process over 1 million tokens in a single prompt. For Power BI, this means:
- Entire semantic models can fit in context for DAX generation
- Long documents (contracts, reports, policies) can be analysed without chunking
- Multi-page reports can be summarised in a single pass
- Complex Data Agent queries can reference extensive schema information
Computer Use Capability
GPT-5.5 supports computer use — the ability to interact with applications and interfaces. This is experimental but has implications for:
- Automated report generation from external data sources
- Data quality monitoring and remediation
- Self-service analytics workflows
Improved Reasoning
GPT-5.5 shows significant improvements in:
- Multi-step analytical reasoning (better DAX generation for complex measures)
- Numerical accuracy (fewer calculation errors in AI Functions)
- Contextual understanding (better NL2DAX translation for Data Agents)
- Code generation quality (more correct DAX, SQL, and Python on first attempt)
GPT-5.4-mini: The New Default
GPT-5.4-mini is the recommended replacement for GPT-4.1-mini as the default model for AI Functions. It offers:
- 1M context window (same as GPT-4.1-mini)
- Better quality output at similar speed
- Lower cost per token than GPT-5.5
- Suitable for 90% of AI Functions workloads
Impact on Power BI Copilot
Good news: You do not need to do anything for Copilot.
Microsoft automatically updates the model behind Copilot. When GPT-4.1 retires, Copilot will switch to the GPT-5 family seamlessly. Your Copilot features will continue to work.
What to watch for:
- Prompt behaviour may change slightly between model versions
- Report generation output may look different (different phrasing, different emphasis)
- DAX generation may use different patterns (same result, different approach)
- Test your key Copilot workflows after the model transition
Action item: After May 2026, test your most-used Copilot workflows. If anything behaves unexpectedly, report it to Microsoft support.
Impact on AI Functions
This is where you need to take action.
By default, Fabric AI Functions use GPT-4.1-mini. After June 2026, this model will no longer be available. You need to update your configuration.
Option 1: Do Nothing (Automatic Migration)
Microsoft will automatically migrate AI Functions to the next available model when GPT-4.1-mini retires. This is the simplest option but gives you no control over which model is used.
Option 2: Update Configuration to GPT-5.4-mini (Recommended)
- Open your Fabric workspace
- Navigate to Settings → AI Functions configuration
- Change the model from GPT-4.1-mini to GPT-5.4-mini
- Save the configuration
This gives you explicit control and lets you test the new model before the deadline.
Option 3: Use Model Router (Best for Mixed Workloads)
The Model Router is a new feature in Foundry that automatically routes prompts to the optimal model based on complexity:
- Simple tasks (sentiment, grammar) → GPT-5.4-mini (fast, cheap)
- Medium tasks (classification, extraction) → GPT-5.4 (balanced)
- Complex tasks (reasoning, code generation) → GPT-5.5 (most capable)
To enable Model Router:
- In Foundry, deploy a Model Router resource
- Configure your AI Functions to use the Model Router endpoint
- The router automatically selects the best model for each prompt
Benefits: Cost optimisation (simple tasks use cheaper models), quality optimisation (complex tasks use better models), and future-proofing (new models are automatically included in the router).
Impact on SynapseML Pipelines
If you have SynapseML pipelines using OpenAIPrompt or OpenAIChatCompletion transformers, you need to update the deployment name:
# Before (GPT-4.1)
chat = OpenAIChatCompletion(
deploymentName="gpt-4.1",
endpoint="your-endpoint",
apiKey="your-key"
)
# After (GPT-5.5)
chat = OpenAIChatCompletion(
deploymentName="gpt-5.5",
endpoint="your-endpoint",
apiKey="your-key"
)
Action item: Search your Fabric notebooks for deploymentName parameters and update them before June 2026.
Impact on Data Agents
Data Agents use the model configured in your Fabric capacity. The transition is handled automatically by Microsoft, but you should:
- Test your Data Agents after the model change
- Verify NL2DAX and NL2SQL query accuracy
- Update custom instructions if query patterns change
- Add new example queries if the model interprets questions differently
Action item: After May 2026, run your standard test queries through each Data Agent and verify the results.
Action Items Checklist
Here is your Power BI team's action plan:
Before May 2026:
- [ ] Update AI Functions configuration to GPT-5.4-mini (or enable Model Router)
- [ ] Update SynapseML pipeline deployment names
- [ ] Document your current Copilot workflows for post-transition testing
After May 2026:
- [ ] Test Copilot workflows — report generation, DAX writing, narrative summaries
- [ ] Test AI Functions — sentiment, classification, extraction on your data
- [ ] Test Data Agents — NL2DAX and NL2SQL query accuracy
- [ ] Monitor CU consumption — new models may have different token usage patterns
Ongoing:
- [ ] Monitor the Fabric Capacity Metrics App for AI Functions CU consumption
- [ ] Evaluate Model Router for cost optimisation
- [ ] Consider Claude as an alternative for specific workloads (document analysis, reasoning)
Cost Implications
GPT-5.5 is more expensive per token than GPT-4.1-mini. Here is the approximate comparison:
| Model | Input (per 1M tokens) | Output (per 1M tokens) |
|---|---|---|
| GPT-4.1-mini (retiring) | $0.40 | $1.60 |
| GPT-5.4-mini (recommended) | $0.50 | $2.00 |
| GPT-5.4 | $2.50 | $10.00 |
| GPT-5.5 | $5.00 | $20.00 |
The practical impact:
- If you switch from GPT-4.1-mini to GPT-5.4-mini, costs increase approximately 25%
- If you use Model Router, costs stay similar (simple tasks use mini, complex tasks use larger models)
- If you switch everything to GPT-5.5, costs increase significantly — only do this for complex workloads
Recommendation: Use GPT-5.4-mini as your default. Reserve GPT-5.5 for complex reasoning tasks. Enable Model Router if you have mixed workloads.
Summary
The GPT-4.1 retirement is a routine model transition, not a crisis. Microsoft handles Copilot automatically. Your main action is updating AI Functions and SynapseML configurations before June 2026.
GPT-5.5 brings real improvements — 1M+ context, better reasoning, computer use — but it is not needed for every task. GPT-5.4-mini is the right default for most Power BI workloads.
Update your configurations. Test your workflows. Monitor your costs. The models are getting better — your Power BI AI capabilities are about to improve.