mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
a3a9147e61
* Rename AgentThread to AgentSession * Add more renames * Update readme files * Revert nullable variable change and further fixes. * Revert change in header name * Fix some comments and tests * Update changelog. * Address PR feedback. * Fixing code review comments. * Fix new errors after merging latest code.
37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using A2A;
|
|
using Microsoft.Agents.AI;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace AgentWebChat.Web;
|
|
|
|
/// <summary>
|
|
/// Interface for clients that can interact with agents and provide streaming responses.
|
|
/// </summary>
|
|
internal abstract class AgentClientBase
|
|
{
|
|
/// <summary>
|
|
/// Runs an agent with the specified messages and returns a streaming response.
|
|
/// </summary>
|
|
/// <param name="agentName">The name of the agent to run.</param>
|
|
/// <param name="messages">The messages to send to the agent.</param>
|
|
/// <param name="sessionId">Optional session identifier for conversation continuity.</param>
|
|
/// <param name="cancellationToken">Cancellation token.</param>
|
|
/// <returns>An asynchronous enumerable of agent response updates.</returns>
|
|
public abstract IAsyncEnumerable<AgentResponseUpdate> RunStreamingAsync(
|
|
string agentName,
|
|
IList<ChatMessage> messages,
|
|
string? sessionId = null,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>
|
|
/// Gets the agent card for the specified agent (A2A protocol only).
|
|
/// </summary>
|
|
/// <param name="agentName">The name of the agent.</param>
|
|
/// <param name="cancellationToken">Cancellation token.</param>
|
|
/// <returns>The agent card if supported, null otherwise.</returns>
|
|
public virtual Task<AgentCard?> GetAgentCardAsync(string agentName, CancellationToken cancellationToken = default)
|
|
=> Task.FromResult<AgentCard?>(null);
|
|
}
|