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

7 lines
113 B
C#
Raw Normal View History

2023-06-17 02:42:35 +00:00
namespace BotSharp.Abstraction.MLTasks;
public interface ITextEmbedding
{
float[] GetVector(string text);
}