From f01913f1432a64304de9232bd36624c9506e02ab Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 17:54:13 +0000 Subject: [PATCH 1/3] docs: add missing docs for some enums (#114) --- completion.go | 5 +++++ finetuningjob.go | 2 ++ 2 files changed, 7 insertions(+) diff --git a/completion.go b/completion.go index 60bc215..d28edd4 100644 --- a/completion.go +++ b/completion.go @@ -396,6 +396,11 @@ func (r CompletionNewParams) MarshalJSON() (data []byte, err error) { return apijson.MarshalRoot(r) } +// ID of the model to use. You can use the +// [List models](https://platform.openai.com/docs/api-reference/models/list) API to +// see all of your available models, or see our +// [Model overview](https://platform.openai.com/docs/models) for descriptions of +// them. type CompletionNewParamsModel string const ( diff --git a/finetuningjob.go b/finetuningjob.go index 0a664c9..d3101eb 100644 --- a/finetuningjob.go +++ b/finetuningjob.go @@ -549,6 +549,8 @@ func (r FineTuningJobNewParams) MarshalJSON() (data []byte, err error) { return apijson.MarshalRoot(r) } +// The name of the model to fine-tune. You can select one of the +// [supported models](https://platform.openai.com/docs/guides/fine-tuning#which-models-can-be-fine-tuned). type FineTuningJobNewParamsModel string const ( From 783ae0990edf56e481e5340f0baf2b6ae48d096a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 17:54:50 +0000 Subject: [PATCH 2/3] release: 0.1.0-alpha.34 --- CHANGELOG.md | 8 ++++++++ internal/version.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b4b029..efee9c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.34 (2024-11-07) + +Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/openai/openai-go/compare/v0.1.0-alpha.33...v0.1.0-alpha.34) + +### Documentation + +* add missing docs for some enums ([#114](https://github.com/openai/openai-go/issues/114)) ([f01913f](https://github.com/openai/openai-go/commit/f01913f1432a64304de9232bd36624c9506e02ab)) + ## 0.1.0-alpha.33 (2024-11-05) Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/openai/openai-go/compare/v0.1.0-alpha.32...v0.1.0-alpha.33) diff --git a/internal/version.go b/internal/version.go index fb95c53..749e50f 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "0.1.0-alpha.33" // x-release-please-version +const PackageVersion = "0.1.0-alpha.34" // x-release-please-version From 8da548a93d511d1dc3398462e6f0643562d23f2a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 17:54:52 +0000 Subject: [PATCH 3/3] release: 0.1.0-alpha.34 --- .release-please-manifest.json | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ff4f9a5..36b2aff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.33" + ".": "0.1.0-alpha.34" } \ No newline at end of file diff --git a/README.md b/README.md index d8a3569..32c3ba3 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Or to pin the version: ```sh -go get -u 'github.com/openai/openai-go@v0.1.0-alpha.33' +go get -u 'github.com/openai/openai-go@v0.1.0-alpha.34' ```