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
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ resource researchHub 'Microsoft.CognitiveServices/accounts@2025-04-01-preview' =
resource researchModel 'Microsoft.CognitiveServices/accounts/deployments@2025-04-01-preview' = {
parent: researchHub
name: 'o3-deep-research'
sku: { name: 'GlobalStandard', capacity: 10 }
// Capacity is K-TPM. 10 was too low - multi-step deep-research runs hit
// 429 throttling before completing. 200 gives realistic headroom while
// staying well under the Norway East o3-DeepResearch subscription quota.
sku: { name: 'GlobalStandard', capacity: 200 }
properties: {
model: {
name: 'o3-deep-research'
Expand Down
5 changes: 4 additions & 1 deletion 12-foundry-iq-deep-research/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ resource researchHub 'Microsoft.CognitiveServices/accounts@2025-04-01-preview' =
resource researchModel 'Microsoft.CognitiveServices/accounts/deployments@2025-04-01-preview' = {
parent: researchHub
name: 'o3-deep-research'
sku: { name: 'GlobalStandard', capacity: 10 }
// Capacity is K-TPM. 10 was too low - multi-step deep-research runs hit
// 429 throttling before completing. 200 gives realistic headroom while
// staying well under the Norway East o3-DeepResearch subscription quota.
sku: { name: 'GlobalStandard', capacity: 200 }
properties: {
model: {
name: 'o3-deep-research'
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.5] - 2026-05-27

### Fixed

- Raised the `o3-deep-research` model deployment capacity from 10 (10K TPM) to 200 (200K TPM) in both `05-foundry-project-pattern-setup/05-02-deploy-foundry-core-gateway/main.bicep` and `12-foundry-iq-deep-research/main.bicep`. The original 10K cap throttled multi-step deep-research runs with 429 errors before completion. 200K stays well under the Norway East `o3-DeepResearch` subscription quota (3000). Existing live deployments must be updated separately (`az cognitiveservices account deployment update --sku-capacity 200`) or via a fresh Bicep apply.

## [0.8.4] - 2026-05-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "awesome-foundry-nextgen"
version = "0.8.4"
version = "0.8.5"
description = "Hands-on labs for Microsoft Foundry — Azure's unified PaaS for enterprise AI"
requires-python = ">=3.11"
dependencies = [
Expand Down