You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.Net: Remove experimental flags for stable items (#11346)
### Motivation and Context
1. Native-AOT
2. OpenAI execution settings
3. ITextSearch
4. IChatHistoryReducer
5. Some Misc. core/abstractions experimental flags that are over 60 days
### Description
<!-- Describe your changes, the overall approach, the underlying design.
These notes will help understanding how your code works. Thanks! -->
### Contribution Checklist
<!-- Before submitting this PR, please make sure: -->
- [ ] The code builds clean without any errors or warnings
- [ ] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [ ] All unit tests pass, and I have added new tests where possible
- [ ] I didn't break anyone 😄
Copy file name to clipboardExpand all lines: dotnet/src/SemanticKernel.Abstractions/AI/PromptExecutionSettings.cs
-2
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
usingSystem;
4
4
usingSystem.Collections.Generic;
5
5
usingSystem.Collections.ObjectModel;
6
-
usingSystem.Diagnostics.CodeAnalysis;
7
6
usingSystem.Text.Json.Serialization;
8
7
usingMicrosoft.SemanticKernel.ChatCompletion;
9
8
usingMicrosoft.SemanticKernel.TextGeneration;
@@ -36,7 +35,6 @@ public class PromptExecutionSettings
36
35
/// When provided, this service identifier will be the key in a dictionary collection of execution settings for both <see cref="KernelArguments"/> and <see cref="PromptTemplateConfig"/>.
37
36
/// If not provided the service identifier will be the default value in <see cref="DefaultServiceId"/>.
0 commit comments