BotSharp/src/Infrastructure/BotSharp.Abstraction/VectorStorage/Models/VectorCollectionData.cs

9 lines
272 B
C#
Raw Normal View History

2024-08-15 23:19:10 +00:00
namespace BotSharp.Abstraction.VectorStorage.Models;
2024-08-06 22:43:11 +00:00
2024-08-15 23:19:10 +00:00
public class VectorCollectionData
2024-08-06 22:43:11 +00:00
{
public string Id { get; set; }
2024-08-15 03:46:01 +00:00
public Dictionary<string, string> Data { get; set; } = new();
public double? Score { get; set; }
2024-08-06 22:43:11 +00:00
public float[]? Vector { get; set; }
2024-08-15 03:46:01 +00:00
}