BotSharp/src/Infrastructure/BotSharp.Abstraction/IPlatformMidware.cs
2023-06-02 21:07:30 -05:00

12 lines
308 B
C#

using BotSharp.Abstraction.Conversations;
using BotSharp.Abstraction.Models;
namespace BotSharp.Abstraction;
public interface IPlatformMidware
{
ISessionService SessionService { get; }
Task GetChatCompletionsAsync(List<RoleDialogModel> conversations,
Func<string, Task> onChunkReceived);
}