Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eed877f

Browse filesBrowse files
release: 1.86.0 (#2405)
* feat(api): Add o3-pro model IDs * release: 1.86.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 2a345ee commit eed877f
Copy full SHA for eed877f

File tree

Expand file treeCollapse file tree

8 files changed

+44
-9
lines changed
Filter options
Expand file treeCollapse file tree

8 files changed

+44
-9
lines changed

‎.release-please-manifest.json

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.85.0"
2+
".": "1.86.0"
33
}

‎.stats.yml

Copy file name to clipboard
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 111
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-4865dda2b62927bd141cbc85f81be3d88602f103e2c581e15eb1caded3e3aaa2.yml
3-
openapi_spec_hash: 7d14a9b23ef4ac93ea46d629601b6f6b
4-
config_hash: ed1e6b3c5f93d12b80d31167f55c557c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-3ae9c18dd7ccfc3ac5206f24394665f563a19015cfa8847b2801a2694d012abc.yml
3+
openapi_spec_hash: 48175b03b58805cd5c80793c66fd54e5
4+
config_hash: 4caff63b74a41f71006987db702f2918

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.86.0 (2025-06-10)
4+
5+
Full Changelog: [v1.85.0...v1.86.0](https://github.com/openai/openai-python/compare/v1.85.0...v1.86.0)
6+
7+
### Features
8+
9+
* **api:** Add o3-pro model IDs ([d8dd80b](https://github.com/openai/openai-python/commit/d8dd80b1b4e6c73687d7acb6c3f62f0bf4b8282c))
10+
311
## 1.85.0 (2025-06-09)
412

513
Full Changelog: [v1.84.0...v1.85.0](https://github.com/openai/openai-python/compare/v1.84.0...v1.85.0)

‎pyproject.toml

Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openai"
3-
version = "1.85.0"
3+
version = "1.86.0"
44
description = "The official Python library for the openai API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

‎src/openai/_version.py

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "openai"
4-
__version__ = "1.85.0" # x-release-please-version
4+
__version__ = "1.86.0" # x-release-please-version

‎src/openai/types/shared/all_models.py

Copy file name to clipboardExpand all lines: src/openai/types/shared/all_models.py
+10-1Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,14 @@
88
__all__ = ["AllModels"]
99

1010
AllModels: TypeAlias = Union[
11-
str, ChatModel, Literal["o1-pro", "o1-pro-2025-03-19", "computer-use-preview", "computer-use-preview-2025-03-11"]
11+
str,
12+
ChatModel,
13+
Literal[
14+
"o1-pro",
15+
"o1-pro-2025-03-19",
16+
"o3-pro",
17+
"o3-pro-2025-06-10",
18+
"computer-use-preview",
19+
"computer-use-preview-2025-03-11",
20+
],
1221
]

‎src/openai/types/shared/responses_model.py

Copy file name to clipboardExpand all lines: src/openai/types/shared/responses_model.py
+10-1Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,14 @@
88
__all__ = ["ResponsesModel"]
99

1010
ResponsesModel: TypeAlias = Union[
11-
str, ChatModel, Literal["o1-pro", "o1-pro-2025-03-19", "computer-use-preview", "computer-use-preview-2025-03-11"]
11+
str,
12+
ChatModel,
13+
Literal[
14+
"o1-pro",
15+
"o1-pro-2025-03-19",
16+
"o3-pro",
17+
"o3-pro-2025-06-10",
18+
"computer-use-preview",
19+
"computer-use-preview-2025-03-11",
20+
],
1221
]

‎src/openai/types/shared_params/responses_model.py

Copy file name to clipboardExpand all lines: src/openai/types/shared_params/responses_model.py
+10-1Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,14 @@
1010
__all__ = ["ResponsesModel"]
1111

1212
ResponsesModel: TypeAlias = Union[
13-
str, ChatModel, Literal["o1-pro", "o1-pro-2025-03-19", "computer-use-preview", "computer-use-preview-2025-03-11"]
13+
str,
14+
ChatModel,
15+
Literal[
16+
"o1-pro",
17+
"o1-pro-2025-03-19",
18+
"o3-pro",
19+
"o3-pro-2025-06-10",
20+
"computer-use-preview",
21+
"computer-use-preview-2025-03-11",
22+
],
1423
]

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.