TL;DR
- Models (GA + Preview): GPT‑5‑Codex (GA) brings multimodal code reasoning & repo intelligence; Sora adds video‑to‑video (Preview); Grok 4 Fast (Preview) enables low‑latency reasoning / non‑reasoning routing; o4‑mini RFT graduates to GA for reward‑driven optimization.
- Realtime & Voice: gpt‑realtime (GA) unifies low‑latency speech ↔ reasoning; Voice Live API GA + new Marin/Cedar voices; Avatar 4K + Emotion delivers higher‑fidelity expressive agents.
- Agents & Tools: Browser Automation (Preview) gains resilient DOM + telemetry; new Computer Use (Preview) unlocks pixel workflows; Python & .NET Agents betas add multi‑tool helper APIs, streaming tool deltas, and AOT readiness.
- Retrieval & Evaluation: Azure AI Search knowledge sources + answer synthesis (Preview) replace single target index patterns;
azure-ai-evaluation
1.11.0 adds experiment tags, groundedness-with-tool-context, and multilingual red team categories. - Platform & Security: Key Vault connections (New) eliminate inline secrets; Identity SDKs (all major languages) enforce required env vars + clearer claims challenges; structured outputs & function calling converge on /openai/v1.
- Language & Data Services: Translator API (Public Preview) integrates real‑time + batch multilingual flows; Text Analytics 6.0.0b1 debuts next‑gen surface; Foundry Local v0.7 expands Windows NPU coverage.
Models
GPT-5-Codex (GA)
OpenAI’s GPT‑5‑Codex is now generally available in Azure AI Foundry. It unifies multimodal code reasoning (text + image context) with advanced repository awareness:
- Multimodal coding: Provide architecture diagrams or UI screenshots alongside code / build logs for contextually coherent fixes.
- Deep refactors & migration flows: Long‑context reasoning supports staged changes (IaC, build scripts, tests) with function calling to execute or validate steps.
- Code review intelligence: Trained to surface critical dependency, security, and performance patterns early—reducing manual review cycles.
Access & deployment: Locate GPT‑5‑Codex in the Model Catalog (Standard Global). Use the v1 latest REST / SDK surface; avoid legacy preview API parameters unless consuming preview‑only capabilities. Pricing table (see announcement) includes cached input tier—incorporate
cache_control
only where reuse materially lowers token spend. Migration guidance: Prior Codex / codex‑mini workflows can usually migrate by (1) re‑deploying under a new deployment name (treat that name asmodel
), (2) re‑enabling tool/function calling with structured JSON schema, and (3) validating temperature & reasoning tokens (if customizing). Evaluate hallucination deltas with groundedness metrics inazure-ai-evaluation
1.11.0.
Sora video-to-video (Preview)
Sora expands beyond image‑to‑video into early video‑to‑video transformation: supply an input clip plus natural language directives (“retain scene pacing; stylize lighting cyber‑noir; smooth camera jitter”). Output preserves temporal coherence while applying style / minor layout edits. Current preview guardrails: capped clip duration, resolution ceilings, stricter content safety (strong rejection for unapproved sensitive categories). Apply via existing Sora preview access form if not already onboarded. Use for: creative iteration loops, marketing variant generation, synthetic dataset augmentation (post review of policy). Not for: photorealistic biometric reenactment or disallowed content categories.
gpt‑realtime (GA)
The new gpt‑realtime model unifies Azure’s speech‑to‑speech capabilities—improved instruction following, lower latency, higher naturalness, and image input support. It collapses prior multi‑model pipelines (STT → LLM → TTS) into a single low‑latency loop, lowering end‑to‑end round‑trip times for live support, IVR deflection, education, and collaborative coding voice agents. New Marin & Cedar voices add expressive prosody; pricing undercuts the earlier realtime preview by ~20%. Combine with Voice Live API session state for resilient interruption handling and with function calling to execute quick lookups or transactions mid‑dialog.
Key advantages:
- Fewer moving parts (simpler scaling & observability)
- Better barge‑in / interruption handling
- Native tool/function calling for orchestration
- Direct multimodal (describe image via voice, then refine)
Grok 4 Fast models (Preview)
grok-4-fast-reasoning
and grok-4-fast-non-reasoning
from xAI bring parallel function calling, long (~131K) context, multimodal image understanding (with tokenizer), and structured JSON output schemas tuned for agentic tool orchestration. Choose the reasoning variant for complex planning / analytical hops; choose non‑reasoning for deterministic low‑latency classification, extraction, or lightweight chaining. Efficient H100 utilization lowers per‑request latency, allowing cost/quality routing (e.g., default to non‑reasoning; escalate to reasoning when confidence or complexity thresholds are unmet).
Implementation tips:
- Define JSON Schema for predictable tool outputs—minimizes downstream validation.
- Log reasoning depth metrics (tokens/time) to refine router thresholds.
- Pair with answer synthesis evaluation to measure citation correctness.
o4‑mini Reinforcement Fine-Tuning (GA)
Reinforcement Fine-Tuning (RFT) for o4-mini
graduates to GA. Instead of curating thousands of labeled completions (SFT), supply a grading function or choose built‑in graders (code correctness, groundedness, format adherence, safety) and let iterative sampling optimize for reward. Start effective runs with ~100 scored examples; expand only if reward plateaus. Use RFT when: multi‑step reasoning consistency matters; policy adherence needs dynamic evaluation; or SFT plateaued on edge‑case reasoning.
Workflow outline:
- Draft concise rubric (YAML / Python grader) with explicit pass/fail + optional scalar score.
- Seed minimal diverse prompts (avoid near duplicates).
- Kick off RFT job; monitor reward trend & variance.
- Post‑train, re‑run evaluation suite (groundedness, red team) to validate safety/regression.
Local + edge
- Foundry Local v0.7: Expanded NPU support (Intel & AMD) on Windows 11, dynamic execution provider detection via Windows ML—simplifies distributing hybrid local/cloud fallback apps.
Avatar 4K + Emotion Control
High‑fidelity 4K avatar rendering plus synchronized emotion control (voice + facial expressions) elevate customer support, training, accessibility, and marketing use cases. Train with 4K source video (framed & centered) for maximum detail retention; choose portrait for vertical signage / mobile, landscape for presentations. Emotion parameters (e.g., cheerful, angry, hopeful) propagate to both prosody and facial animation, producing consistent affective output—falling back to neutral where unsupported.
Best practices:
- Downscale at runtime (e.g., 1920×1080) if bandwidth is constrained—retain original 4K master for archival.
- Use SSML emotion tags for fine‑grained segment control within longer scripts.
- Benchmark MOS (expressiveness) for your domain before large rollout.
Agents
Computer Use tool (Preview)
Enables pixel-level interaction (click, type, screenshot feedback loop) across desktop or browser surfaces when DOM semantics are insufficient (legacy apps, canvas‑heavy UIs). Compared to Browser Automation, Computer Use trades semantic DOM awareness for raw visual adaptability—powerful but higher risk.
Risk mitigations:
- Run only in isolated, low‑privilege VMs without production secrets.
- Enforce human approval for domain / action categories (file system, administrative panels).
- Maintain an allowlist of permitted host/application windows; reject off‑scope UI transitions.
Telemetry tip: Persist screenshot hashes to detect visually static loops (stalled automation) and abort gracefully.
Microsoft Agent Framework: the new OSS orchestration engine for agent development
The Microsoft Agent Framework (OSS) unifies Semantic Kernel durability & AutoGen orchestration. Early adopters benefit from: MCP discovery, agent‑to‑agent (A2A) messaging, declarative YAML/JSON agent specs, OpenTelemetry tracing, and enterprise approval hooks. Plan migration: map legacy plugin patterns to Tool abstractions, validate memory connectors, re‑instrument tracing IDs for continuity in dashboards.
Tools
Evaluation & safety
azure-ai-evaluation
1.11.0 introduces:
- Experiment tags: Attach stable metadata (model deployment name, router policy hash, tool set version) for slice comparisons.
- Groundedness with tool context: Evaluator now inspects cited tool outputs and retrieved documents—flagging hallucinations that conflict with authoritative snippets.
- Multilingual red teaming expansion: Adds IndirectAttack (prompt injection / covert instruction) & UngroundedAttributes categories for broader safety coverage.
Recommended workflow: (1) Tag baseline (pre‑Browser Automation) agent, (2) enable new tools, (3) re‑run evaluation suite; compare groundedness deltas and risk incidence to justify rollout.
Retrieval (Azure AI Search)
Knowledge sources (Preview) abstract underlying indexes & Blob sources with integrated vectorization + chunking. Answer synthesis composes grounded responses with inline citations across multiple knowledge sources—removing earlier single target index constraints. Combine with index description metadata to improve relevance selection. Debug hybrid retrieval via sub‑score & debug modes; apply scoring profiles during semantic reranking for domain boosting (freshness, popularity, compliance tags).
Platform
Translator API
Add neural machine translation, custom terminology, and document translation pipelines directly into multi‑modal or agentic workflows. Use Translator alongside GPT‑5‑Codex or retrieval flows to localize generated content, summarize foreign‑language sources, or produce parallel corpora for evaluation.
Key scenarios:
- Real‑time chat + translation: route user utterances through Translator before/after model reasoning.
- Batch document translation: feed translated artifacts into knowledge sources for multi‑lingual grounding.
- Terminology compliance: apply custom term lists prior to evaluation to reduce post‑edit distance.
Tip: For latency‑sensitive pipelines, perform translation asynchronously and cache deterministic outputs keyed by content hash + target locale.
SDK & language changelog (September 2025)
Focused highlights for the core Azure AI Foundry developer packages this month. Each bullet groups all September versions (stable + beta) so you can scan breaking changes, new features, and migration actions quickly.
Python
Agents (azure-ai-agents
1.2.0b2 → 1.2.0b4)
Features: Browser Automation tool support; Computer Use preview tool; multi‑tool helper APIs (get_tool_resources
, get_tool_definitions
); streaming delta models for Connected / search / Fabric / SharePoint tools.
Reliability: Multiple tracing fixes (duplicate span name normalization, hanging create_and_process
w/ MCP approval).
Action: If you instrument OpenTelemetry, re-run baselines—span naming updates may affect existing dashboards.
Changelog
Evaluation (azure-ai-evaluation
1.11.0)
Features: Experiment tags
, groundedness evaluator extended to tool outputs (file search context), multilingual red team (IndirectAttack, UngroundedAttributes).
Action: Start tagging evaluation runs (e.g., model deployment, tool policy hash) to enable cross‑version diff queries.
Changelog
Projects (azure-ai-projects
1.1.0b3–b4)
Changes: Dependency bump to prefer the newer Agents beta (>=1.2.0b3
), secret key retrieval bug fix for custom key connections.
Action: Pin azure-ai-agents>=1.2.0b4
to pick up tracing + tool improvements before scaling multi‑tool threads.
Changelog
Search (azure-search-documents
11.7.0b1)
Features: Knowledge sources abstraction, answer synthesis, extensive new model classes (KnowledgeSource*, agent activity records), removal of target index constructs.
Breaking (preview): Removal of KnowledgeAgentTargetIndex
& related agent index params—migrate to KnowledgeSource
objects.
Changelog
Identity (azure-identity
1.25.0)
Features: claims
support for AzureDeveloperCliCredential
; require_envvar
to enforce env presence; multiple auth robustness fixes.
Action: Use DefaultAzureCredential(require_envvar="AZURE_TOKEN_CREDENTIALS")
in CI to fail fast on misconfiguration.
Changelog
Text Analytics (azure-ai-textanalytics
6.0.0b1)
Status: First beta of next‑gen surface; expect breaking shape evolution—keep isolated virtual env during evaluation.
Changelog
Voice Live (azure-ai-voicelive
1.0.0b1–b2)
Features: WebSocket connection model (VoiceLiveConnection
), async function call support, serialization fix for function outputs.
Action: When upgrading from b1 → b2, validate function call message schema (JSON str serialization change).
Changelog (b2)
Cosmos DB (azure-cosmos
4.14.0b2–b4)
Focus: Session token scoping optimizations, extensive bug fixes (health check region handling, partition key edge cases), new feed range & multi‑item read APIs.
Action: Re‑benchmark RU & latency after upgrade—per request session token trimming can materially reduce header size.
Latest beta changelog
.NET
Agents Persistent (Azure.AI.Agents.Persistent
1.2.0-beta.2–.5)
Features: Streaming MCP tool support, FileSearch & CodeInterpreter tool enablement, AOT compatibility, additional delta tool call models, delete ThreadMessages, Bing/Fabric/SharePoint tool deltas.
Fixes: ResponseFormat handling + unexpected streaming type issues, image block serialization.
Action: If targeting native AOT, update to ≥ beta.4 and re‑generate RDXML after adding new tool types.
Changelog (latest)
Projects (Azure.AI.Projects
1.0.0-beta.11)
Breaking: Extensive type and method renames (e.g., AIDeployment
→ AssetDeployment
, consolidated GetOpenAIClient
).
Features: New AIProjectClient
ctor supporting AuthenticationTokenProvider
.
Action: Run a full solution rename pass; integrate with unified Inference client path.
Changelog
OpenAI Inference (Azure.AI.OpenAI
2.3.0-beta.2)
Features: Experimental default headers & query parameter injection (pipeline customization).
Action: Avoid embedding secrets—use this for correlation IDs or feature flags only.
Changelog
Search (Azure.Search.Documents
11.7.0-beta.6–.7)
Features: System.ClientModel serialization; knowledge sources & answer synthesis; AOT‑friendly overloads with JsonTypeInfo<T>
.
Breaking: Removal of knowledge agent target index; QueryDebugMode
relocation.
Changelog (beta.7)
Identity (Azure.Identity
1.16.0 + Azure.Identity.Broker
1.3.0)
Features: Custom env variable constructor, improved claims challenge exceptions, reduced probe traffic with Managed Identity env configuration; broker package deprecates legacy SharedTokenCache credential options.
Fixes: AzureDeveloperCliCredential
hang & token cache issues.
Changelog
Core (Azure.Core
1.47.2–1.48.0 / System.ClientModel
1.6.0–1.6.1)
Updates: Adoption of System.ClientModel 1.6.x, user agent policy additions, AOT friendliness improvements, auth bug fix enabling TokenCredential with unbranded clients.
Azure.Core changelog
Data Movement (Storage) 12.2.2 & 12.3.0-beta.1 Fixes: Path handling for directory uploads; metadata preservation. Features (beta): Quality & cross-protocol copy improvements; SMB↔NFS share copy support (files shares beta). Changelog
Synapse Artifacts 1.0.0-preview.22 Large schema expansion (ServiceNowV2, SnowflakeV2, cert-based auth params, numerous Oracle / Amazon RDS additions) plus redaction/bypass flags. Action: Regenerate strongly typed orchestration layers if you rely on generated linked service definitions. Changelog
Java
Search (azure-search-documents
11.7.9 GA & 11.8.0-beta.8)
Beta: Knowledge sources + answer synthesis, dropped obsolete target index constructs, added VectorFilterMode.STRICT_POST_FILTER
.
GA patch: Dependency upgrades (azure-core
1.56.0, serializer updates).
Beta changelog
Identity (azure-identity
1.18.0 + azure-identity-broker
1.1.17)
Features: Claims challenge support across CLI/PowerShell credentials; AzureIdentityEnvVars
enum + requireEnvVars
builder enforcement; enhanced error messaging.
Changelog
Cosmos (azure-cosmos
4.74.0 & ecosystem)
Adds throughput bucket support; encryption & Spark connectors updated; test harness beta adds Gateway V2.
Action: Evaluate new Spark auth audience config (spark.cosmos.auth.aad.audience
).
Changelog
Communication Call Automation 1.4.3 / 1.5.0 / 1.6.0-beta.1 Progressive feature rollout: Teams persona support, public participant transfer (beta), transcription PII redaction & sentiment analysis. Action: Adopt 1.5.0 for stable recording improvements; experiment with beta for advanced transfer flows. Changelog (1.6.0-beta.1)
Storage (Blobs 12.31.2 + batch/crypto)
Dependency alignment with azure-core
1.56.0; cryptography & internal Avro updates—reassess shaded deps if you build a fat JAR.
Blob changelog
Core (azure-core
1.56.1 & serializers)
Serializer (Jackson/Gson) bumps; ensure any custom ObjectMapper
modules are compatible after upgrade.
Core changelog
Note: Java Agents & Projects packages (persistent agents / projects) did not surface distinct September release entries in highlights; monitor upcoming drops for parity features introduced in .NET & Python.
JavaScript / TypeScript
Monitor OpenTelemetry 1.13.0 → 1.14.0 Features: Enable nearly all instrumentations by default; multi‑exporter metrics support; default exporter version bump. Action: Audit duplicated custom instrumentation to avoid double spans after upgrade. Changelog (1.14.0)
Communication Call Automation 1.5.0 & 1.6.0-beta.1 Adds Teams multipersona, recording via call connection ID, sentiment + PII redaction (beta adds participant transfer, richer transcription tooling). Changelog (beta)
Identity 4.12.0
Features: requiredEnvVars
option + union type; claims challenge failure clarity; multiple credential UX fixes.
Action: Set requiredEnvVars: ["AZURE_TOKEN_CREDENTIALS"]
in production initialization blocks for deterministic startup validation.
Changelog
Cosmos (@azure/cosmos
4.5.1)
Reliability: Removal of unavailable regions from location cache; retry policy refinement for ENOTFOUND.
Action: Clear any custom location preference overrides to benefit from new pruning heuristics.
Changelog
Playwright ecosystem
@azure/create-playwright
1.0.0 and @azure/playwright
1.0.0 initial releases; deprecation notices for legacy create / microsoft-playwright-testing packages—follow migration guide to new config names (createAzurePlaywrightConfig
, connectTimeout
).
Create Playwright changelog
OpenTelemetry Exporter 1.0.0-beta.34–.35 Features: Customer SDK Stats export interval env var; telemetry success field; dependency refresh. Changelog (beta.35)
TypeSpec HTTP Runtime 0.3.1 Logging improvements (leaner RestError output), dependency bumps. Changelog
Documentation updates
This section is now consolidated. We removed low-signal freshness edits (date bumps, screenshot swaps, minor wording) and grouped only substantive changes.
New
- GPT-5-Codex GA announcement & model entry (multimodal code reasoning) – migration guidance & repo intelligence patterns. (announcement · model entry)
- Sora video-to-video preview docs – input clip transformation, temporal coherence guardrails. (quickstart · concept)
- Browser Automation tool docs & samples – preview setup, DOM heuristics, Playwright Workspace integration. (how-to · samples)
- Key Vault connections setup – managed secret binding with rotation playbook. (guide)
- Deep Research agents tutorial – multi-hop planning + Bing search orchestration. (samples)
- Browser Automation + Computer Use security/isolation architecture pages. (browser automation · computer use)
- Retrieval knowledge sources & answer synthesis – multi-index grounding & latency trade-offs. (blog)
- Evaluation graders (groundedness with tool context, multilingual red teaming) + tagging best practices. (evaluators)
- Network security perimeter (preview) configuration guide – perimeter join & logging. (perimeter guide)
- Deployment policy (Azure Policy) guide – restrict model families, context length, publisher controls. (model deployment policy)
- Consolidated cost & usage dashboard concept – unified spend/health view. (consolidated view)
- Model router regional expansion matrix – new regions & fallback guidance. (model region support)
- Structured outputs + function calling modernization (/openai/v1) – JSON schema strategies. (structured outputs · function calling)
- Azure Direct Models terminology pages (abuse monitoring & limited access policy refactor). (abuse monitoring · limited access)
- Local tracing quickstart (instrument locally, export to portal) & advanced redaction. (trace application)
- Computer Use tool overview & samples – pixel automation + high-risk mitigations. (overview · samples)
- Hub CMK & Hub RBAC dedicated articles – separated from project scope. (hub CMK · hub RBAC)
- BCDR for Agents section – state durability & recovery. (agents overview)
- Voice Live data privacy + transparency notes – processing & retention. (privacy · transparency)
- Consolidated model deployments guide + marketplace configuration expansion. (deployments guide · marketplace config)
- General platform cost management concept (broad billing + budgeting) and models cost management overhaul. (platform costs · models costs)
- GPT‑5 vs GPT‑4.1 comparison guide – model selection heuristics. (comparison)
- Codex how-to guide – CLI, VS Code, approval modes, security guardrails. (codex)
- AI solution templates additions – accelerator templates. (templates)
- Continuous evaluation (agents) region & metrics guide. (continuous eval)
- Structured outputs REST/Python includes with
gpt-5-codex
& /openai/v1 adoption. (structured outputs)
Updated / GA / Overhauled
- GPT-5-Codex model docs – moved from limited access to GA; added quotas & reasoning feature clarifications. (model entry)
- Sora docs – video-to-video workflow, multi-input constraints, added region (Sweden Central) & REST examples. (concept)
- gpt-realtime – GA rename, new event names, latency & supported models list updates. (realtime quickstart)
- Grok 4 / Grok 4 Fast models – region & capability tables, availability columns added/normalized. (models include)
- o4-mini RFT – GA guidance, benchmark methodology & reward tuning recommendations. (RFT how-to)
- Avatar 4K + Emotion – latency/resolution matrix & emotion propagation clarifications. (avatar blog)
- DeepSeek R1 / V3.1 – reasoning prompt engineering, deployment capability rows. (DeepSeek tutorial)
- Black Forest Labs & FLUX.1 Kontext entries – parameter details (seed, aspect ratio) + safety notes. (models include)
- Retrieval service docs – knowledge sources abstraction & answer synthesis latency benchmarks. (retrieval blog)
- Evaluation service & azure-ai-evaluation 1.11.0 – experiment tags, groundedness-with-tool-context, multilingual categories. (evaluators)
- Unified OpenAI client migration (Python/JS/.NET/Java/Go) – removal of legacy chat completions quickstarts; Responses API emphasized. (Python overview)
- Function calling & structured outputs – added gpt-5-codex; deprecated older GPT-4 preview variants. (function calling)
- Content filtering configurability – threshold ranges & alignment with safety annotations. (content filters)
- Prompt engineering – warnings against extracting raw reasoning (policy risk) & simplified scenario framing. (prompt engineering)
- Realtime API & vision/PDF guidance – generalized context length + image/PDF capability scoping. (Responses API)
- Fine-tuning overview & model includes – GPT‑4o/mini availability; global training graduated from preview. (fine-tuning overview)
- RFT docs – custom graders security (AST evaluation), resource limits, removed deprecated fields. (RFT how-to)
- Cost management (models/platform/hub) – unified, expanded budgeting & export instructions; redirects added. (models cost mgmt)
- Security & governance TOC – reorganized hub vs project encryption, connections, quotas. (encryption keys)
- RBAC & Entra ID guides – group management, subscription-scope purge visibility requirement. (RBAC)
- Network security perimeter – traffic routing order (Private Link precedence) & diagnostics. (perimeter guide)
- Deployment guides – portal/Bicep/CLI rewrites, endpoint retrieval clarity, template recommendations for private networking. (deployment guide)
- Model router docs – removed limited access notes; clarified GPT-5 routing & fallback logic. (model router)
- Model region & quota matrices – added GPT-5, removed deprecated columns, standardized availability presentation. (region support)
- Quotas & limits – standardized quota increase process include; added GPT-5 Codex, o-series, realtime entries. (quotas & limits)
- Playgrounds & first-run experiences – unified flows, expanded highlights, tracking parameters for analytics. (playgrounds)
- Foundry Local architecture/get-started – NPU (Intel/AMD/Qualcomm) support, driver notes, troubleshooting & default model alias changes. (Foundry Local get started)
- Foundry Local CLI & SDK refs – execution provider downloads, restart troubleshooting, EP options added. (Foundry Local CLI)
- Tracing & evaluation guides – local collector workflow, playground trace/eval clarity, evaluation results comparison instructions. (trace application)
- Agents quickstarts & concepts – removed redundant tables, expanded orchestration components, updated code tabs. (agents quickstart)
- Browser Automation & Computer Use – troubleshooting, isolation model, risk categorization improvements. (browser automation)
- Bing tools & samples – transaction counting, variable naming, configuration name terminology. (bing tool)
- Marketplace configuration – architecture diagrams & troubleshooting expansions. (marketplace config)
- Upgrade (Azure OpenAI → Foundry) – networking, pricing, troubleshooting, limitations clarifications; removed obsolete limitations. (upgrade guide)
- Responses API, reasoning, structured outputs – /openai/v1 adoption,
model
payload field emphasis, unsupported feature pruning. (Responses API) - Model retirements timeline – new dates (o1-mini, Mistral variants) & replacements (gpt-5-mini, updated large models). (model retirements)
- Voice Live integration / gpt-realtime pairing – session state & interruption handling examples. (Voice Live GA blog)
- Agents continuous evaluation – project configuration steps & region table. (continuous evaluation)
- FAQ & legacy cleanups – removed outdated GPT‑4 Turbo Q&A; chat completions quickstarts deprecated & redirected. (FAQ)
Join the community
Ship something with these updates and tell us about it! Join the discussion on Discord, open a thread in GitHub Discussions forum, or catch the next live deep‑dive (Model Mondays + Agent AMA).
0 comments
Be the first to start the discussion.