Skip to content

Commit

Permalink
OpenAI-DotNet 8.2.1 (#350)
Browse files Browse the repository at this point in the history
- Fixed a typo in the Azure OpenAI URL base endpoint

---------

Co-authored-by: Sebastian Schubotz <[email protected]>
Co-authored-by: Stephen Hodgson <[email protected]>
  • Loading branch information
3 people authored Aug 19, 2024
1 parent 1a5a497 commit 2cf2a22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenAI-DotNet/Common/OpenAIBaseEndpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected string GetUrl(string endpoint = "", Dictionary<string, string> queryPa

if (client.OpenAIClientSettings.IsAzureOpenAI && IsAzureDeployment == true)
{
route = $"{Root}deployments/{client.OpenAIClientSettings.DeploymentId}/{endpoint}";
route = $"deployments/{client.OpenAIClientSettings.DeploymentId}/{Root}{endpoint}";
}
else
{
Expand Down
4 changes: 3 additions & 1 deletion OpenAI-DotNet/OpenAI-DotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ More context [on Roger Pincombe's blog](https://rogerpincombe.com/openai-dotnet-
<AssemblyOriginatorKeyFile>OpenAI-DotNet.pfx</AssemblyOriginatorKeyFile>
<IncludeSymbols>true</IncludeSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>8.2.0</Version>
<Version>8.2.1</Version>
<PackageReleaseNotes>
Version 8.2.1
- Fixed a typo in the Azure OpenAI URL base endpoint
Version 8.2.0
- Added structured output support
- Added support for Azure OpenAI assistants
Expand Down

0 comments on commit 2cf2a22

Please sign in to comment.