7 lines
160 B
C#
7 lines
160 B
C#
|
|
namespace BotSharp.Abstraction;
|
||
|
|
|
||
|
|
public interface IPlatformMidware
|
||
|
|
{
|
||
|
|
Task GetChatCompletionsAsync(string text, Func<string, bool, Task> onChunkReceived);
|
||
|
|
}
|