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
/// Set of keys to establish channel affinity. Minimum expected key-set:
41
52
/// <example>
@@ -53,12 +64,13 @@ public abstract class Agent
53
64
/// <summary>
54
65
/// Produce the an <see cref="AgentChannel"/> appropriate for the agent type.
55
66
/// </summary>
56
-
/// <param name="logger">An agent specific logger.</param>
57
67
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
58
68
/// <returns>An <see cref="AgentChannel"/> appropriate for the agent type.</returns>
59
69
/// <remarks>
60
70
/// Every agent conversation, or <see cref="AgentChat"/>, will establish one or more <see cref="AgentChannel"/>
61
71
/// objects according to the specific <see cref="Agent"/> type.
Copy file name to clipboardExpand all lines: dotnet/src/Agents/Abstractions/IChatHistoryHandler.cs
-3
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
// Copyright (c) Microsoft. All rights reserved.
2
2
usingSystem.Collections.Generic;
3
3
usingSystem.Threading;
4
-
usingMicrosoft.Extensions.Logging;
5
4
6
5
namespaceMicrosoft.SemanticKernel.Agents;
7
6
@@ -14,12 +13,10 @@ public interface IChatHistoryHandler
14
13
/// Entry point for calling into an agent from a <see cref="ChatHistoryChannel"/>.
15
14
/// </summary>
16
15
/// <param name="history">The chat history at the point the channel is created.</param>
17
-
/// <param name="logger">The logger associated with the <see cref="ChatHistoryChannel"/></param>
18
16
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
19
17
/// <returns>Asynchronous enumeration of messages.</returns>
0 commit comments