using BotSharp.Abstraction.Functions.Models; using BotSharp.Abstraction.Models; using BotSharp.Abstraction.Routing; using BotSharp.Abstraction.Routing.Settings; namespace BotSharp.Core.Routing.Handlers; public class ConversationEndRoutingHandler : RoutingHandlerBase, IRoutingHandler { public string Name => "conversation_end"; public string Description => "Call this function when user wants to end this conversation or all tasks have been completed."; public List Parameters => new List { new NameDesc("reason", "why this conversation is end") }; public bool IsReasoning => false; public ConversationEndRoutingHandler(IServiceProvider services, ILogger logger, RoutingSettings settings) : base(services, logger, settings) { } public Task Handle(IRoutingService routing, FunctionCallFromLlm inst) { throw new NotImplementedException(); } }