BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/ITextEmbedding.cs
2023-08-15 12:21:04 -05:00

9 lines
190 B
C#

namespace BotSharp.Abstraction.MLTasks;
public interface ITextEmbedding
{
int Dimension { get; }
float[] GetVector(string text);
List<float[]> GetVectors(List<string> texts);
}