BotSharp/tests/BotSharp.Plugin.PizzaBot/Functions/PlaceOrderFn.cs
2023-09-05 22:19:36 -05:00

15 lines
351 B
C#

using BotSharp.Abstraction.Conversations.Models;
namespace BotSharp.Plugin.PizzaBot.Functions;
public class PlaceOrderFn : IFunctionCallback
{
public string Name => "place_an_order";
public async Task<bool> Execute(RoleDialogModel message)
{
message.ExecutionResult = "The order number is P123-01";
return true;
}
}