Skip to content

Releases: openai/openai-python

v0.9.0

29 Jun 21:57
7ddcba1
Compare
Choose a tag to compare
  • CLI improvements

v0.8.0

17 Jun 18:13
250c33d
Compare
Choose a tag to compare
  • Support model-based completions in the SDK/CLI.
    (Context: /v1/completions is now a thing. If the engine parameter is not supplied, we make requests to that path. Otherwise, if engine is provided, requests are made to /v1/engines/<ENGINE>/completions. We expect most users to still use the engine parameter right now.)
  • Update docstring for Completions

v0.7.0

11 Jun 23:06
40c32f9
Compare
Choose a tag to compare

This change is backwards incompatible.

  • Remove support for python versions < 3.6.
  • Add mypy typing.

v0.6.4

21 May 00:57
7b0f97e
Compare
Choose a tag to compare

N/A

v0.6.3

12 Apr 15:18
5f8c4a8
Compare
Choose a tag to compare

Removes unused and unsupported functionality.

v0.6.2

20 Mar 20:31
cf9c04a
Compare
Choose a tag to compare
  • Add requirement to fix missing import

v0.6.1

19 Mar 00:30
a57b587
Compare
Choose a tag to compare
  • Patch to fix progress meter (for file uploading).

v0.6.0

18 Mar 19:31
4e38179
Compare
Choose a tag to compare
  • Adds support for user-uploaded file management in the CLI
  • Files are now deletable. You'll need delete privileges to do so. By default, only the owner of your org has those permissions.
  • openai.Higherlevel has been deleted. The /answers and /classifications endpoints are now in their own classes and can be called like openai.Answer.create(..)
  • openai.Higherlevel.retriever_file_set_search has been moved into Engine.search. Users can now submit a previously submitted file ID to search over instead of sending in documents

v0.4.0

04 Mar 00:50
ff751ab
Compare
Choose a tag to compare

Adds SDK and CLI commands for /fine-tunes

Note: Fine-tuning is a closed beta feature. For access, please submit your information here

v0.3.0

27 Jan 19:23
f00f489
Compare
Choose a tag to compare

Adds /classifications, /answers, and /retriever_file_set_search endpoint support