BotSharp/src/Infrastructure/BotSharp.Abstraction/IPlatformMidware.cs
2023-05-26 20:58:31 -05:00

7 lines
160 B
C#

namespace BotSharp.Abstraction;
public interface IPlatformMidware
{
Task GetChatCompletionsAsync(string text, Func<string, bool, Task> onChunkReceived);
}