BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/ITextCompletion.cs
2023-06-16 21:42:35 -05:00

7 lines
123 B
C#

namespace BotSharp.Abstraction.MLTasks;
public interface ITextCompletion
{
Task<string> GetCompletion(string text);
}