BotSharp/src/Infrastructure/BotSharp.Abstraction/IPlatformMidware.cs

7 lines
160 B
C#
Raw Normal View History

2023-05-27 01:58:31 +00:00
namespace BotSharp.Abstraction;
public interface IPlatformMidware
{
Task GetChatCompletionsAsync(string text, Func<string, bool, Task> onChunkReceived);
}