Releases: alexrudall/ruby-openai
Releases · alexrudall/ruby-openai
3.0.3
Added
- Add ability to run the specs without VCR cassettes using
NO_VCR=true bundle exec rspec
. - Add Ruby 3.2 to CircleCI config - thanks @petergoldstein!
- A bit of detail added to the README on DALLE image sizes - thanks @ndemianc!
Fixed
- Fix finetunes and files uploads endpoints - thanks @chaadow for your PR on this and @petergoldstein for the PR we ultimately went with.
3.0.2
3.0.1
[3.0.1] - 2022-12-26
Removed
- [BREAKING] Remove deprecated answers, classifications, embeddings, engines and search endpoints.
- [BREAKING] Remove ability to pass engine to completions and embeddings outside of the parameters hash.
3.0.0
Added
- Add ability to set access_token via gem configuration.
- Thanks @grjones and @aquaflamingo for raising this and @feministy for the excellent guide to adding config to a gem.
Removed
- [BREAKING] Remove ability to include access_token directly via ENV vars.
- [BREAKING] Remove ability to pass API version directly to endpoints.
2.3.0
Added
- Add Images#edit and Images#variations endpoint to modify images with DALL·E.
2.2.0
Added
- Add Organization ID to headers so users can charge credits to the correct organization.
- Thanks @mridul911 for raising this and @maks112v for adding it!
2.1.0
Added
- Add Images#generate endpoint to generate images with DALL·E!
2.0.1
Removed
- Deprecate Client#answers endpoint.
- Deprecate Client#classifications endpoint.
2.0.0
Removed
- [BREAKING] Remove support for Ruby 2.5.
- [BREAKING] Remove support for passing
query
,documents
orfile
as top-level parameters toClient#search
. - Deprecate Client#search endpoint.
- Deprecate Client#engines endpoints.
Added
- Add Client#models endpoints to list and query available models.
1.5.0
Added
- Add Client#moderations endpoint to check OpenAI's Content Policy.
- Add Client#edits endpoints to transform inputs according to instructions.