9 lines
193 B
C#
9 lines
193 B
C#
|
|
using BotSharp.Abstraction.Models;
|
||
|
|
|
||
|
|
namespace BotSharp.Abstraction.MLTasks;
|
||
|
|
|
||
|
|
public interface IChatCompletion
|
||
|
|
{
|
||
|
|
Task<string> GetChatCompletionsAsync(List<RoleDialogModel> conversations);
|
||
|
|
}
|