2023-06-17 02:42:35 +00:00
|
|
|
namespace BotSharp.Abstraction.MLTasks;
|
|
|
|
|
|
|
|
|
|
public interface ITextEmbedding
|
|
|
|
|
{
|
2023-06-18 13:02:59 +00:00
|
|
|
int Dimension { get; }
|
2023-06-17 02:42:35 +00:00
|
|
|
float[] GetVector(string text);
|
2023-08-15 17:21:04 +00:00
|
|
|
List<float[]> GetVectors(List<string> texts);
|
2023-06-17 02:42:35 +00:00
|
|
|
}
|