Skip to content

Commit

Permalink
.Net: Update PlannerConfigBase.cs (#2954)
Browse files Browse the repository at this point in the history
### Motivation and Context

To keep code clean

### Description

Remove unnecessary init

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [x] The code builds clean without any errors or warnings
- [x] 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
- [x] All unit tests pass, and I have added new tests where possible
- [x] I didn't break anyone 😄
  • Loading branch information
WeihanLi authored Sep 25, 2023
1 parent 3451a4e commit 4afd1e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public abstract class PlannerConfigBase
/// <summary>
/// Delegate to get the prompt template string.
/// </summary>
public Func<string>? GetPromptTemplate { get; set; } = null;
public Func<string>? GetPromptTemplate { get; set; }

/// <summary>
/// A list of plugins to exclude from the plan creation request.
Expand Down

0 comments on commit 4afd1e5

Please sign in to comment.