Skip to content

Commit

Permalink
.Net: Remove experimental attribute from AllowStrictSchemaAdherence p…
Browse files Browse the repository at this point in the history
…roperty (microsoft#10547)

### Motivation, Context and Description
The `AllowStrictSchemaAdherence` property has been released more than a
month ago and can be considered stable.
  • Loading branch information
SergeyMenshykh authored Feb 17, 2025
1 parent 5680206 commit 2d2ee3a
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Copyright (c) Microsoft. All rights reserved.

using System.Diagnostics.CodeAnalysis;
using System.Text.Json.Serialization;

namespace Microsoft.SemanticKernel;
Expand Down Expand Up @@ -35,6 +34,5 @@ public sealed class FunctionChoiceBehaviorOptions
/// The default value is set to false. If set to true, the AI model will strictly adhere to the function schema.
/// </remarks>
[JsonPropertyName("allow_strict_schema_adherence")]
[Experimental("SKEXP0001")]
public bool AllowStrictSchemaAdherence { get; set; } = false;
}

0 comments on commit 2d2ee3a

Please sign in to comment.