GPTMap

OpenAI Ecosystem Week 40 (2026-08-21 to 2026-08-27): GPT Store Enterprise, EU AI Act

OpenAI ecosystem week 40 (2026-08-21 to 2026-08-27) weekly tracker: GPT Store Enterprise rollout, EU AI Act 8-2 enforcement, Agents SDK 1.0 stable, Realtime multilingual expansion, o-series pricing update.

TL;DR
OpenAI ecosystem week 40 (2026-08-21 to 2026-08-27) tracker. Key events: GPT Store Enterprise phased rollout (3-layer GPT matrix), EU AI Act 8-2 enforcement (AI labels required), Agents SDK 1.0 stable (handoffs + guardrails + tracing), Realtime API multilingual to 50+ languages, o-series pricing slightly adjusted.
OpenAI ecosystem week 40 weekly tracker refers to a summary tracking important product updates, pricing adjustments, policy changes, and developer tool releases in the OpenAI and GPT ecosystem during the week of 2026-08-21 to 2026-08-27.

OpenAI ecosystem week 40 (2026-08-21 to 2026-08-27) weekly tracker. Key events this week: GPT Store Enterprise phased rollout / EU AI Act 8-2 clause enforcement / Agents SDK 1.0 stable / Realtime multilingual expansion / o-series pricing adjustment.

1. This week's timeline

DateEventImportance
2026-08-21o3-mini pricing adjustment announcement⭐⭐
2026-08-22Realtime API multilingual phased rollout⭐⭐
2026-08-24GPT Store Enterprise phased rollout⭐⭐⭐
2026-08-25o-series pricing officially adjusted⭐⭐
2026-08-26EU AI Act 8-2 clause enforced⭐⭐⭐
2026-08-27Agents SDK 1.0 stable released⭐⭐⭐

2. Headline: GPT Store Enterprise phased rollout (2026-08-24)

OpenAI announced GPT Store Enterprise phased rollout. Available to the first batch of ChatGPT Enterprise customers; full openness in 2026-Q4.

2.1 Three-layer architecture

[Orchestration layer]
  GPT-A → GPT-B (business orchestration)
  ↓
[Shared GPT layer]
  Business-unit-shared GPTs
  ↓
[Private GPT layer]
  Team-internal dedicated

2.2 Key capabilities

  • Private GPT: team-internal + data isolation + permission control
  • Shared GPT: cross-department sharing + Actions to business systems
  • Orchestration layer: GPT calls GPT + workflow automation
  • Unified permissions: SSO + roles + audit logs
  • No training on data: enterprise data not written into training set

2.3 Access

ChatGPT Enterprise customers should contact OpenAI sales to enable. Auto-enable expected in 2026-Q4.

2.4 Practical recommendations

  • Large enterprises evaluate immediately — multi-business-unit GPT collaboration
  • Mid-size enterprises — start with ChatGPT Team (~$25/person/month) + private GPT
  • Small enterprises — continue with ChatGPT Plus ($20/month) + personal Custom GPT

3. EU AI Act 8-2 clause enforced 2026-08-26

EU AI Act 8-2 clause core requirements:

3.1 Labeling requirements

Public AI-generated content must be labeled:

  • Images: metadata + watermark (e.g., C2PA standard)
  • Text: watermark (hidden characters or explicit annotation)
  • Video: frame-level marker
  • Audio: voice signature or explicit annotation

3.2 Transparency obligations

  • AI systems must proactively declare (generated by AI)
  • User first-use prompt
  • Output file retains AI generation evidence (6 months)

3.3 Violation penalties

  • Up to 7% of turnover fine
  • Serious violations can disable product from market

3.4 ChatGPT implementation

OpenAI has started automatically adding AI generation labels:

  • GPT Image 2 output automatically adds C2PA metadata
  • Text output tail adds "[Generated by AI]" annotation
  • Video output frame-level marker

User impact: all ChatGPT user output content automatically carries AI labels. Cross-border / EU markets must comply.

4. Agents SDK 1.0 stable (2026-08-27)

OpenAI released Agents SDK 1.0 stable, moving from beta to production-ready.

4.1 Key capabilities

  1. handoffs — Agents hand off conversation context to each other (e.g., customer service GPT hands off to billing GPT)
  2. guardrails — input / output validation (anti-prompt-injection)
  3. tracing — distributed tracing for debugging multi-Agent
  4. Standardized tool calling — unified interface for all Agent calls
  5. OpenTelemetry integration — compatible with existing observability tools
  6. Python / TypeScript dual SDK — bilingual support

4.2 Practical code

Python example:

from agents import Agent, Runner, handoff

# Define two Agents
billing_agent = Agent(
    name="Billing Agent",
    instructions="Handle billing inquiries",
    tools=[...],
)

support_agent = Agent(
    name="Support Agent",
    instructions="Handle general support; hand off billing questions",
    handoffs=[handoff(billing_agent)],  # hand off billing questions
)

# Run
result = await Runner.run(support_agent, "I have a billing question")

4.3 Upgrade recommendations

  • Projects using 0.x beta before 1.0 — upgrade immediately
  • New projects — use 1.0 directly
  • Multi-Agent projects — enable handoffs + tracing + guardrails

5. Realtime API multilingual expansion (2026-08-22)

Realtime API multilingual expansion to 50+ languages, covering more low-resource languages.

5.1 Added languages

RegionLanguages
Southeast AsiaVietnamese / Thai / Indonesian / Malay / Tagalog
South AsiaTamil / Bengali / Urdu
AfricaSwahili / Hausa / Yoruba / Amharic
Eastern EuropeUkrainian / Serbian / Romanian

5.2 Models

  • GPT-Realtime-2.1 (voice conversation, released 2026-07-06)
  • GPT-Realtime-Translate (real-time translation, released 2026-05-07)

5.3 Application scenarios

  • Cross-language real-time customer service: cross-border e-commerce / banking / logistics
  • Multilingual education: online language learning / cross-border education
  • Cross-border healthcare: real-time doctor-patient communication
  • Diplomacy / business: cross-language meetings

6. o-series pricing adjustment (2026-08-25)

OpenAI announced o-series reasoning model pricing adjustments:

ModelOld priceNew priceChange
o3-miniInput $0.20 / MTok, output $0.80Input $0.16 / MTok, output $0.64-20%
o4-miniInput $1.10 / MTok, output $4.40Unchanged0%
o3Input $10 / MTok, output $40Unchanged0%

GPT-5.6 family (Sol / Terra / Luna) prices unchanged.

Impact

  • o3-mini cost-effectiveness further improved — suitable for large-volume reasoning scenarios
  • o3 / o4-mini unchanged — existing users unaffected
  • GPT-5.6 family — still mainstream (prices unchanged)

7. Other updates

7.1 ChatGPT mobile

  • iOS 6.2.0: real-time translation UI optimization
  • Android 6.1.5: memory leak fix

7.2 Developer tools

  • OpenAI Cookbook added 5 new recipes
  • Playground supports o-series comparison testing
  • API reference docs updated

7.3 Policy and compliance

  • Training data audit report v4 released
  • EU AI Act implementation guide updated
  • Cross-border data transfer compliance updated

8. Practical recommendations

8.1 Enterprise users

  • Evaluate GPT Store Enterprise immediately — multi-business-unit GPT collaboration
  • EU AI Act compliance review — output content review + AI labels
  • Agents SDK 1.0 upgrade — multi-Agent projects from 0.x to 1.0

8.2 Developers

  • Realtime API multilingual — cross-border application expansion
  • o3-mini price reduction — large-volume reasoning scenarios cost -20%
  • Agents SDK handoffs — multi-Agent orchestration engineering

8.3 Regular users

  • ChatGPT AI labels — all output automatically labeled, no manual setup needed
  • Multilingual real-time conversation — Realtime API 50+ languages

9. Next week preview

  • 2026-09-03: GPT-5.7 family preview (expected)
  • 2026-09-10: OpenAI DevDay 2026 (expected)
  • 2026-09-15: o4 series official release (expected)

Frequently asked questions

1. When will GPT Store Enterprise be fully open?

GPT Store Enterprise phased rollout began on 2026-08-24, the first batch of ChatGPT Enterprise customers. OpenAI announced full openness in 2026-Q4. Features: (1) private GPT (in-department + data isolation); (2) shared GPT (cross-department + Actions to business); (3) orchestration layer (GPT calls GPT); (4) unified permissions + SSO + audit. Recommendation: ChatGPT Enterprise customers should immediately contact OpenAI sales to enable.

2. What are the specific requirements of EU AI Act 8-2 clause?

EU AI Act 8-2 clause (enforced 2026-08-26) core requirements: (1) public AI-generated content must be labeled (e.g., image metadata / text watermark / video frame markers); (2) transparency obligation — AI systems must proactively declare (generated by AI); (3) technical documentation — providers keep AI generation evidence for 6 months; (4) violation penalties — up to 7% of turnover fine. ChatGPT has started automatically adding AI generation labels (image metadata + text watermark).

3. What are the key improvements in Agents SDK 1.0?

Key improvements in Agents SDK 1.0 stable: (1) handoffs — Agents hand off conversation context to each other; (2) guardrails — input / output validation (anti-prompt-injection); (3) tracing — distributed tracing for debugging multi-Agent; (4) standardized tool calling; (5) OpenTelemetry integration; (6) Python / TypeScript dual SDK. 1.0 means production-ready — previously 0.x was beta.

4. Which languages were added to the Realtime API?

Realtime API multilingual expansion to 50+ languages. Added this week: (1) Southeast Asia — Vietnamese / Thai / Indonesian / Malay / Tagalog; (2) South Asia — Tamil / Bengali / Urdu; (3) Africa — Swahili / Hausa / Yoruba / Amharic; (4) Eastern Europe — Ukrainian / Serbian / Romanian. GPT-Realtime-2.1 model + GPT-Realtime-Translate model supported.

5. What is the o-series pricing adjustment?

OpenAI announcement from 2026-08-25: (1) o3-mini price -20% (input $0.20 / MTok → $0.16 / MTok, output $0.80 → $0.64 / MTok); (2) o4-mini price unchanged (input $1.10 / MTok, output $4.40 / MTok); (3) o3 price unchanged (input $10 / MTok, output $40 / MTok); (4) GPT-5.6 family (Sol/Terra/Luna) price unchanged. o3-mini cost-effectiveness further improved.

Next steps

Key points

  • GPT Store Enterprise phased rollout — supports private / shared / orchestration 3-layer GPT matrix; ChatGPT Enterprise customers first; unified permissions + SSO + no training on data.
  • EU AI Act 8-2 clause officially enforced on 2026-08-26 — public AI-generated content must be labeled; ChatGPT product line begins to display AI generation watermarks.
  • Agents SDK 1.0 stable released — handoffs + guardrails + tracing; multi-Agent orchestration enters the engineering stage.
  • Realtime API multilingual expansion to 50+ languages — including Southeast Asian / African languages; suitable for cross-language real-time customer service / education.
  • o-series pricing slightly adjusted — o3-mini price -20%, o4-mini price unchanged; GPT-5.6 family Sol/Terra/Luna price unchanged.

Frequently asked questions

GPT Store Enterprise phased rollout began on 2026-08-24, the first batch of ChatGPT Enterprise customers. OpenAI announced full openness in 2026-Q4. Features: (1) private GPT (in-department + data isolation); (2) shared GPT (cross-department + Actions to business); (3) orchestration layer (GPT calls GPT); (4) unified permissions + SSO + audit. Recommendation: ChatGPT Enterprise customers should immediately contact OpenAI sales to enable.

Official references

Related articles

Subscribe to GPTMap Weekly

One email every Monday: curated OpenAI updates, deep dives, and best practices. No ads, unsubscribe anytime.

GPTMap EditorialPublished 2026-08-27 8 min read
Test environment (EEAT)
Last tested: 2026-08-27
Model used: gpt-5.6