BotSharp/src/Infrastructure/BotSharp.Abstraction/VectorStorage/Models/VectorCollectionData.cs
2024-08-15 18:19:10 -05:00

9 lines
272 B
C#

namespace BotSharp.Abstraction.VectorStorage.Models;
public class VectorCollectionData
{
public string Id { get; set; }
public Dictionary<string, string> Data { get; set; } = new();
public double? Score { get; set; }
public float[]? Vector { get; set; }
}