Skip to content

Releases: alexrudall/ruby-openai

2.3.0

23 Dec 22:42
451c18c

Choose a tag to compare

Added

  • Add Images#edit and Images#variations endpoint to modify images with DALL·E.

2.2.0

15 Dec 09:13

Choose a tag to compare

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

13 Nov 17:24
216f9f9

Choose a tag to compare

Added

  • Add Images#generate endpoint to generate images with DALL·E!

2.0.1

22 Oct 20:51

Choose a tag to compare

Removed

  • Deprecate Client#answers endpoint.
  • Deprecate Client#classifications endpoint.

2.0.0

19 Sep 14:40
815f9f9

Choose a tag to compare

Removed

  • [BREAKING] Remove support for Ruby 2.5.
  • [BREAKING] Remove support for passing query, documents or file as top-level parameters to Client#search.
  • Deprecate Client#search endpoint.
  • Deprecate Client#engines endpoints.

Added

  • Add Client#models endpoints to list and query available models.

1.5.0

18 Sep 19:15

Choose a tag to compare

Added

  • Add Client#moderations endpoint to check OpenAI's Content Policy.
  • Add Client#edits endpoints to transform inputs according to instructions.

1.4.0

11 Dec 22:41

Choose a tag to compare

Added

  • Add Client#engines endpoints to list and query available engines.
  • Add Client#finetunes endpoints to create and use fine-tuned models.
  • Add Client#embeddings endpoint to get vector representations of inputs.
  • Add tests and examples for more engines.

v1.3.1

14 Jul 20:33

Choose a tag to compare

Changed

  • Add backwards compatibility from Ruby 2.5+.

v1.3.0

18 Apr 21:16
5d56dd3

Choose a tag to compare

Added

  • Add Client#classifications to predict the most likely labels based on examples or a file.

Fixed

  • Fixed Files#upload which was previously broken by the validation code!

v1.2.2

18 Apr 17:16

Choose a tag to compare

Changed

  • Add Client#search(parameters:) to allow passing max_rerank or return_metadata.
  • Deprecate Client#search with query, file or document parameters at the top level.
  • Thanks @stevegeek for pointing this issue out!