diff --git a/src/Infrastructure/BotSharp.Abstraction/MLTasks/IChatCompletion.cs b/src/Infrastructure/BotSharp.Abstraction/MLTasks/IChatCompletion.cs index 51f89375e..4ac62841a 100644 --- a/src/Infrastructure/BotSharp.Abstraction/MLTasks/IChatCompletion.cs +++ b/src/Infrastructure/BotSharp.Abstraction/MLTasks/IChatCompletion.cs @@ -16,13 +16,13 @@ public interface IChatCompletion void SetModelName(string model); Task GetChatCompletions(Agent agent, - List conversations); + List conversations) => throw new NotImplementedException(); Task GetChatCompletionsAsync(Agent agent, List conversations, Func onMessageReceived, - Func onFunctionExecuting); + Func onFunctionExecuting) => throw new NotImplementedException(); Task GetChatCompletionsStreamingAsync(Agent agent, - List conversations); + List conversations) => throw new NotImplementedException(); }