Skip to content

Commit 0dd10fd

Browse files
authored
Merge pull request #678 from betalgo/dev
8.10.1
2 parents fd70702 + 22357f5 commit 0dd10fd

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

OpenAI.Playground/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
// | / \ / \ | \ /) | ( \ /o\ / ) | (\ / | / \ / \ |
5252
// |-----------------------------------------------------------------------|
5353

54-
//await ChatCompletionTestHelper.RunSimpleChatCompletionTest(sdk);
54+
await ChatCompletionTestHelper.RunSimpleChatCompletionTest(sdk);
5555
//await ChatCompletionTestHelper.RunSimpleCompletionStreamTest(sdk);
5656

5757
await (new RealtimeAudioExample(realtimeSdk)).Run();

OpenAI.SDK/Betalgo.Ranul.OpenAI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageIcon>Betalgo-Ranul-OpenAI-icon.png</PackageIcon>
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1212
<Title>OpenAI SDK by Betalgo</Title>
13-
<Version>8.10.0</Version>
13+
<Version>8.10.1</Version>
1414
<Authors>Tolga Kayhan, Betalgo</Authors>
1515
<Company>Betalgo Up Ltd.</Company>
1616
<Product>OpenAI .NET library by Betalgo Ranul</Product>

OpenAI.SDK/ObjectModels/RequestModels/ChatCompletionCreateRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,5 +320,5 @@ public IEnumerable<ValidationResult> Validate()
320320
/// more about evals: https://platform.openai.com/docs/guides/evals
321321
/// </summary>
322322
[JsonPropertyName("store")]
323-
public bool? Store { get; set; } = false;
323+
public bool? Store { get; set; }
324324
}

Readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ Due to time constraints, not all methods have been thoroughly tested or fully do
117117
Needless to say, I cannot accept responsibility for any damage caused by using the library.
118118

119119
## Changelog
120+
### 8.10.1
121+
- 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.
122+
120123
### 8.10.0
121124
- Added support for `Microsoft.Extensions.AI` `IChatClient` and `IEmbeddingGenerator` (more information will be coming soon to the Wiki).
122125
- Added missing `Temperature` and `TopP` parameters to `AssistantResponse`.

0 commit comments

Comments
 (0)