BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructHook.cs
2025-03-04 17:25:35 -06:00

12 lines
340 B
C#

using BotSharp.Abstraction.Instructs.Models;
namespace BotSharp.Abstraction.Instructs;
public interface IInstructHook
{
string SelfId { get; }
Task BeforeCompletion(Agent agent, RoleDialogModel message);
Task AfterCompletion(Agent agent, InstructResult result);
Task OnResponseGenerated(InstructResponseModel response);
}