openai 0.77.0 → 0.77.1
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 +7 -0
- data/README.md +2 -2
- data/lib/openai/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 297d9623dbc4b6e0f7fa0237d4e35f4fe4f147eb3b862d9b5c5d4c2ea32a12c6
|
|
4
|
+
data.tar.gz: e9a284106c4f845bf5bf7fb15ef19479905edf8903375df61860f1eb8afe3b00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78fe85ca363710e01d50a2421b04fad7e5633ce8447c41ff44d39168d54994c2f273192e02f2c2fc7ba669d1f365b19d66805e4b84df07a038e6c4176fe00110
|
|
7
|
+
data.tar.gz: 87405293563621fc6332fa479296f35015b1bc4463bf7e55f44a60e3611cf5d2c09f2ba67d2bdca96724c820369b6d27549ead881e346853adc35627a8450b73
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.77.1](https://github.com/openai/openai-ruby/compare/v0.77.0...v0.77.1) (2026-08-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct README grammar ([#337](https://github.com/openai/openai-ruby/issues/337)) ([a1cf585](https://github.com/openai/openai-ruby/commit/a1cf585164298c3b8037297fde985037762ae071))
|
|
9
|
+
|
|
3
10
|
## [0.77.0](https://github.com/openai/openai-ruby/compare/v0.76.0...v0.77.0) (2026-08-03)
|
|
4
11
|
|
|
5
12
|
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
15
15
|
<!-- x-release-please-start-version -->
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem "openai", "~> 0.77.
|
|
18
|
+
gem "openai", "~> 0.77.1"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
<!-- x-release-please-end -->
|
|
@@ -531,7 +531,7 @@ All parameter and response objects inherit from `OpenAI::Internal::Type::BaseMod
|
|
|
531
531
|
|
|
532
532
|
You can send undocumented parameters to any endpoint, and read undocumented response properties, like so:
|
|
533
533
|
|
|
534
|
-
Note: the `extra_` parameters of the same name
|
|
534
|
+
Note: the `extra_` parameters of the same name override the documented parameters.
|
|
535
535
|
|
|
536
536
|
```ruby
|
|
537
537
|
chat_completion =
|
data/lib/openai/version.rb
CHANGED