openai 0.25.1 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/openai/models/all_models.rb +1 -0
- data/lib/openai/models/responses_model.rb +1 -0
- data/lib/openai/version.rb +1 -1
- data/rbi/openai/models/all_models.rbi +5 -0
- data/rbi/openai/models/responses_model.rbi +5 -0
- data/sig/openai/models/all_models.rbs +2 -0
- data/sig/openai/models/responses_model.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3c1a71d808c79d0cc0c3d6258103489ca127f3c437d79823b8975e73a5c5027
|
4
|
+
data.tar.gz: a5cd6cc4d1cb2d7f144b9d7f498d9ae51d540bb025883b0c04f9ac60c751487e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f923479ccd9602e086b3dd87cb4b17f94cc42146f9e61b313473161f824cba737b4770c776bac4158e658896d8f77a2c1fcff571c99e97a544da89c8f6fbceb7
|
7
|
+
data.tar.gz: 5113901c49d3bb0476d7076ff41270e1baa68a02b54db309312589214d372607352936b310a6d8ce6b4ccdb02d72054043c79b1b3c38e560f19e065b091c2867
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.26.0 (2025-09-23)
|
4
|
+
|
5
|
+
Full Changelog: [v0.25.1...v0.26.0](https://github.com/openai/openai-ruby/compare/v0.25.1...v0.26.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** gpt-5-codex ([6c9b9b5](https://github.com/openai/openai-ruby/commit/6c9b9b58dabc56fbe9ac871517f837a662c6c237))
|
10
|
+
|
3
11
|
## 0.25.1 (2025-09-22)
|
4
12
|
|
5
13
|
Full Changelog: [v0.25.0...v0.25.1](https://github.com/openai/openai-ruby/compare/v0.25.0...v0.25.1)
|
data/README.md
CHANGED
@@ -24,6 +24,7 @@ module OpenAI
|
|
24
24
|
O4_MINI_DEEP_RESEARCH_2025_06_26 = :"o4-mini-deep-research-2025-06-26"
|
25
25
|
COMPUTER_USE_PREVIEW = :"computer-use-preview"
|
26
26
|
COMPUTER_USE_PREVIEW_2025_03_11 = :"computer-use-preview-2025-03-11"
|
27
|
+
GPT_5_CODEX = :"gpt-5-codex"
|
27
28
|
|
28
29
|
# @!method self.values
|
29
30
|
# @return [Array<Symbol>]
|
@@ -24,6 +24,7 @@ module OpenAI
|
|
24
24
|
O4_MINI_DEEP_RESEARCH_2025_06_26 = :"o4-mini-deep-research-2025-06-26"
|
25
25
|
COMPUTER_USE_PREVIEW = :"computer-use-preview"
|
26
26
|
COMPUTER_USE_PREVIEW_2025_03_11 = :"computer-use-preview-2025-03-11"
|
27
|
+
GPT_5_CODEX = :"gpt-5-codex"
|
27
28
|
|
28
29
|
# @!method self.values
|
29
30
|
# @return [Array<Symbol>]
|
data/lib/openai/version.rb
CHANGED
@@ -73,6 +73,11 @@ module OpenAI
|
|
73
73
|
:"computer-use-preview-2025-03-11",
|
74
74
|
OpenAI::ResponsesModel::ResponsesOnlyModel::TaggedSymbol
|
75
75
|
)
|
76
|
+
GPT_5_CODEX =
|
77
|
+
T.let(
|
78
|
+
:"gpt-5-codex",
|
79
|
+
OpenAI::ResponsesModel::ResponsesOnlyModel::TaggedSymbol
|
80
|
+
)
|
76
81
|
|
77
82
|
sig do
|
78
83
|
override.returns(
|
@@ -19,6 +19,7 @@ module OpenAI
|
|
19
19
|
| :"o4-mini-deep-research-2025-06-26"
|
20
20
|
| :"computer-use-preview"
|
21
21
|
| :"computer-use-preview-2025-03-11"
|
22
|
+
| :"gpt-5-codex"
|
22
23
|
|
23
24
|
module ResponsesOnlyModel
|
24
25
|
extend OpenAI::Internal::Type::Enum
|
@@ -33,6 +34,7 @@ module OpenAI
|
|
33
34
|
O4_MINI_DEEP_RESEARCH_2025_06_26: :"o4-mini-deep-research-2025-06-26"
|
34
35
|
COMPUTER_USE_PREVIEW: :"computer-use-preview"
|
35
36
|
COMPUTER_USE_PREVIEW_2025_03_11: :"computer-use-preview-2025-03-11"
|
37
|
+
GPT_5_CODEX: :"gpt-5-codex"
|
36
38
|
|
37
39
|
def self?.values: -> ::Array[OpenAI::Models::AllModels::responses_only_model]
|
38
40
|
end
|
@@ -19,6 +19,7 @@ module OpenAI
|
|
19
19
|
| :"o4-mini-deep-research-2025-06-26"
|
20
20
|
| :"computer-use-preview"
|
21
21
|
| :"computer-use-preview-2025-03-11"
|
22
|
+
| :"gpt-5-codex"
|
22
23
|
|
23
24
|
module ResponsesOnlyModel
|
24
25
|
extend OpenAI::Internal::Type::Enum
|
@@ -33,6 +34,7 @@ module OpenAI
|
|
33
34
|
O4_MINI_DEEP_RESEARCH_2025_06_26: :"o4-mini-deep-research-2025-06-26"
|
34
35
|
COMPUTER_USE_PREVIEW: :"computer-use-preview"
|
35
36
|
COMPUTER_USE_PREVIEW_2025_03_11: :"computer-use-preview-2025-03-11"
|
37
|
+
GPT_5_CODEX: :"gpt-5-codex"
|
36
38
|
|
37
39
|
def self?.values: -> ::Array[OpenAI::Models::ResponsesModel::responses_only_model]
|
38
40
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.26.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAI
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|