diff --git a/sdk/openai/openai/CHANGELOG.md b/sdk/openai/openai/CHANGELOG.md index 5675e131b798..4a857b9da8e8 100644 --- a/sdk/openai/openai/CHANGELOG.md +++ b/sdk/openai/openai/CHANGELOG.md @@ -1,10 +1,6 @@ # Release History -## 1.0.0-beta.11 (Unreleased) - -### Features Added - -### Breaking Changes +## 1.0.0-beta.11 (2024-01-25) ### Bugs Fixed @@ -12,8 +8,6 @@ - Fix a bug where the service returns undefined `choices` in chat completion methods. - Fix a bug in chat completion methods where the returned stream was causing an error in Bun. -### Other Changes - ## 1.0.0-beta.10 (2024-01-03) ### Bugs Fixed diff --git a/sdk/openai/openai/src/rest/openAIClient.ts b/sdk/openai/openai/src/rest/openAIClient.ts index bdab56468e63..dfdbcb67fdcf 100644 --- a/sdk/openai/openai/src/rest/openAIClient.ts +++ b/sdk/openai/openai/src/rest/openAIClient.ts @@ -28,7 +28,7 @@ export default function createClient( ): OpenAIContext { const baseUrl = options.baseUrl ?? `${endpoint}/openai`; options.apiVersion = options.apiVersion ?? "2023-12-01-preview"; - const userAgentInfo = `azsdk-js-openai-rest/1.0.0-beta.9`; + const userAgentInfo = `azsdk-js-openai-rest/1.0.0-beta.11`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${userAgentInfo}`