ruby-openai 8.2.0 → 8.2.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 +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -0
- data/lib/openai/stream.rb +1 -1
- 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: edad531342b6296e28117d60bd553335744abf4aec719af050fbc08894afbe29
|
4
|
+
data.tar.gz: 9118084194b776895d59495ee1b4040e06ba6922414d7231df7b0d3b7ecbcee1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 782e4a2dfdcfcdea758114fadae57d38a3cb452b9e14a42af35e62cb4cef88793f9d4ec3d676706c700ea0533dc621a79c928a884b998e18ed09f68ba954c676
|
7
|
+
data.tar.gz: b51f699d07b20dcd665cc9ac42d02fe296844f929a75dd89f9b324c8ce1532e559dd6975593a9aabb8410fc0229b276ee60abfd5a8bd14e050785c6dbb02261c
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [8.2.1] - 2025-08-29
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- Fix bug introduce in v8.2 which broke streaming with Faraday 2.1.0 - thanks to [@fabioxgn](https://github.com/fabioxgn) for the excellent PR!
|
13
|
+
|
8
14
|
## [8.2.0] - 2025-08-10
|
9
15
|
|
10
16
|
### Added
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -547,6 +547,8 @@ response = client.responses.create(parameters: {
|
|
547
547
|
}
|
548
548
|
})
|
549
549
|
puts response.dig("output", 0, "content", 0, "text")
|
550
|
+
# => Thinking about how to answer this...
|
551
|
+
puts response.dig("output", 1, "content", 0, "text")
|
550
552
|
# => Hi Szymon! Great to meet you. How can I help today?
|
551
553
|
```
|
552
554
|
|
data/lib/openai/stream.rb
CHANGED
data/lib/openai/version.rb
CHANGED