diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ff4f9a50..36b2affb 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/CHANGELOG.md b/CHANGELOG.md index 5b4b0298..efee9c95 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/README.md b/README.md index d8a35693..32c3ba3e 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' ``` diff --git a/completion.go b/completion.go index 60bc215b..d28edd40 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 0a664c9f..d3101eb3 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 ( diff --git a/internal/version.go b/internal/version.go index fb95c539..749e50f7 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