BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/IChatCompletion.cs

9 lines
193 B
C#
Raw Normal View History

2023-06-19 18:32:49 +00:00
using BotSharp.Abstraction.Models;
namespace BotSharp.Abstraction.MLTasks;
public interface IChatCompletion
{
Task<string> GetChatCompletionsAsync(List<RoleDialogModel> conversations);
}