2023-06-03 02:07:30 +00:00
|
|
|
using BotSharp.Abstraction.Conversations;
|
2023-05-28 16:30:27 +00:00
|
|
|
using BotSharp.Abstraction.Models;
|
|
|
|
|
|
2023-05-27 01:58:31 +00:00
|
|
|
namespace BotSharp.Abstraction;
|
|
|
|
|
|
|
|
|
|
public interface IPlatformMidware
|
|
|
|
|
{
|
2023-06-03 02:07:30 +00:00
|
|
|
ISessionService SessionService { get; }
|
2023-05-29 01:06:05 +00:00
|
|
|
Task GetChatCompletionsAsync(List<RoleDialogModel> conversations,
|
|
|
|
|
Func<string, Task> onChunkReceived);
|
2023-05-27 01:58:31 +00:00
|
|
|
}
|