using BotSharp.Abstraction.Models; namespace BotSharp.Abstraction; public interface IPlatformMidware { Task GetChatCompletionsAsync(string text, Func GetInstruction, Func> GetChatHistory, Func onChunkReceived, Func onChunkCompleted); }