chore: import upstream snapshot with attribution
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using Microsoft.SemanticKernel.ChatCompletion;
|
||||
|
||||
namespace ChatCompletion;
|
||||
|
||||
/// <summary>
|
||||
/// Extensions methods for <see cref="IChatCompletionService"/>
|
||||
/// </summary>
|
||||
internal static class ChatCompletionServiceExtensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Adds an wrapper to an instance of <see cref="IChatCompletionService"/> which will use
|
||||
/// the provided instance of <see cref="IChatHistoryReducer"/> to reduce the size of
|
||||
/// the <see cref="ChatHistory"/> before sending it to the model.
|
||||
/// </summary>
|
||||
/// <param name="service">Instance of <see cref="IChatCompletionService"/></param>
|
||||
/// <param name="reducer">Instance of <see cref="IChatHistoryReducer"/></param>
|
||||
public static IChatCompletionService UsingChatHistoryReducer(this IChatCompletionService service, IChatHistoryReducer reducer)
|
||||
{
|
||||
return new ChatCompletionServiceWithReducer(service, reducer);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user