mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-28 23:48:39 +02:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
336 B
C#
13 lines
336 B
C#
using Aryx.AgentHost.Contracts;
|
|
|
|
namespace Aryx.AgentHost.Services;
|
|
|
|
internal interface IAgentProvider
|
|
{
|
|
ITurnWorkflowRunner CreateWorkflowRunner(WorkflowValidator workflowValidator);
|
|
|
|
Task<SidecarCapabilitiesDto> GetCapabilitiesAsync(CancellationToken cancellationToken);
|
|
|
|
IProviderSessionManager CreateSessionManager();
|
|
}
|