OpenAI Python SDK v3.19.0 Adds GCP Storage Support and References Unreleased 'GPT-Rosalind' Model
OpenAI released v3.19.0 of its Python SDK on September 22, 2026, adding GCP external storage support and a code reference to an unannounced research model called GPT-Rosalind. The release also ships five bug fixes covering WebSocket handling, retry logic, and async compatibility.
What shipped
OpenAI released version 3.19.0 of its official Python SDK on September 22, 2026. The release adds two new features and fixes five bugs, according to the changelog published on GitHub.
Features
The most notable addition is API support for GCP external storage, letting the SDK reference Google Cloud Platform storage locations for API operations (PR #3943). This extends OpenAI's existing external storage integrations, which previously covered other cloud providers, to GCP.
The second feature is a reference to a GPT-Rosalind research model (PR #3940). The changelog entry only adds the model identifier to the client library — it does not include specifications, benchmark scores, pricing, or a context window size. OpenAI has not published a model card, blog post, or announcement for GPT-Rosalind as of this release. The naming pattern is consistent with OpenAI's practice of shipping SDK support for internal or upcoming research models ahead of a public launch, but nothing in this changelog confirms the model is generally available, what it does, or when — or whether — it will be released publicly.
Bug fixes
Five fixes landed in this release:
- Async transform propagation:
__api_exclude__now correctly propagates through_async_transform_recursive, fixing a bug where excluded fields could leak into async request payloads (PR #3324). - WebSocket omission markers: The client now correctly handles omission markers in queued WebSocket events, addressing a bug that could cause malformed event processing (PR #3944).
- Retry safety: The client now retries only replayable request content, preventing potential double-submission of non-idempotent request bodies on retry (PR #3771).
- aiohttp compatibility: The SDK now tolerates older optional aiohttp installations rather than failing outright (PR #3941).
- Async loop handling: Helper methods now use
asyncio.get_running_loop()inside async methods instead of deprecated loop-fetching patterns (PR #3289).
What this means
This is a routine SDK maintenance release, not a model launch. The GCP storage addition is a incremental infrastructure improvement for developers running OpenAI workloads with Google Cloud storage backends. The bug fixes address real reliability issues — particularly the retry-safety fix, which prevents the client from resending non-idempotent requests, and the WebSocket fix, which affects real-time API consumers using the Realtime API.
The GPT-Rosalind reference is the item worth watching. OpenAI has a history of adding model identifiers to its SDK before public announcements, sometimes weeks ahead of a release. Developers should not expect to call this model yet — there's no confirmation it's accessible via the public API, no pricing, and no benchmark data. Treat it as a signal that a research model is in OpenAI's pipeline, not as a product announcement.
Related Articles
OpenAI Python SDK v3.18.0 Adds Identifiers for 'GPT-6 Sol' and 'GPT-6 Luna'
OpenAI's openai-python SDK v3.18.0 release adds two new model identifiers, 'GPT-6 Sol' and 'GPT-6 Luna,' to its codebase. No official model announcement, specifications, or pricing has been released alongside this change.
OpenAI Rolls Out Improved Prompt Caching for GPT-6
OpenAI has updated its prompt caching system for GPT-6, adding explicit cache breakpoints, new diagnostic tools, and finer-grained controls. The company claims the changes improve cache hit rates and reduce both latency and cost for repeated-context API calls.
OpenAI Rolls Out Improved Prompt Caching for GPT-6
OpenAI has published a changelog describing improved prompt caching for GPT-6, claiming higher cache hit rates, new diagnostic tooling, and explicit cache breakpoints. The update targets developers running high-volume, repetitive-prompt workloads who want lower latency and cost.
Anthropic SDK for Python v1.8.0 Adds Support for Claude Opus 5.5, Fixes Streaming Crash
Anthropic released v1.8.0 of its Python SDK, adding support for the claude-opus-5-5 model, inline tool definitions, and beta MCP tool-list pinning. The release also fixes a Python 3.13 exit crash and several tool-handling bugs.
Comments
Loading...