Skip to content

Commit

Permalink
Merge pull request #678 from betalgo/dev
Browse files Browse the repository at this point in the history
8.10.1
  • Loading branch information
kayhantolga authored Nov 18, 2024
2 parents fd70702 + 22357f5 commit 0dd10fd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OpenAI.Playground/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
// | / \ / \ | \ /) | ( \ /o\ / ) | (\ / | / \ / \ |
// |-----------------------------------------------------------------------|

//await ChatCompletionTestHelper.RunSimpleChatCompletionTest(sdk);
await ChatCompletionTestHelper.RunSimpleChatCompletionTest(sdk);
//await ChatCompletionTestHelper.RunSimpleCompletionStreamTest(sdk);

await (new RealtimeAudioExample(realtimeSdk)).Run();
Expand Down
2 changes: 1 addition & 1 deletion OpenAI.SDK/Betalgo.Ranul.OpenAI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageIcon>Betalgo-Ranul-OpenAI-icon.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>OpenAI SDK by Betalgo</Title>
<Version>8.10.0</Version>
<Version>8.10.1</Version>
<Authors>Tolga Kayhan, Betalgo</Authors>
<Company>Betalgo Up Ltd.</Company>
<Product>OpenAI .NET library by Betalgo Ranul</Product>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,5 +320,5 @@ public IEnumerable<ValidationResult> Validate()
/// more about evals: https://platform.openai.com/docs/guides/evals
/// </summary>
[JsonPropertyName("store")]
public bool? Store { get; set; } = false;
public bool? Store { get; set; }
}
3 changes: 3 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ Due to time constraints, not all methods have been thoroughly tested or fully do
Needless to say, I cannot accept responsibility for any damage caused by using the library.

## Changelog
### 8.10.1
- Fixed an issue with the `Store` parameter being included in requests by default, causing errors with Azure OpenAI models. The parameter is now optional and excluded from serialization unless explicitly set.

### 8.10.0
- Added support for `Microsoft.Extensions.AI` `IChatClient` and `IEmbeddingGenerator` (more information will be coming soon to the Wiki).
- Added missing `Temperature` and `TopP` parameters to `AssistantResponse`.
Expand Down

0 comments on commit 0dd10fd

Please sign in to comment.