7 lines
123 B
C#
7 lines
123 B
C#
namespace BotSharp.Abstraction.MLTasks;
|
|
|
|
public interface ITextCompletion
|
|
{
|
|
Task<string> GetCompletion(string text);
|
|
}
|