BotSharp/src/Infrastructure/BotSharp.Abstraction/VectorStorage/Models/VectorQueryOptions.cs
2025-08-06 17:40:47 -05:00

13 lines
255 B
C#

namespace BotSharp.Abstraction.VectorStorage.Models;
public class VectorQueryOptions
{
public bool WithPayload { get; set; }
public bool WithVector { get; set; }
public static VectorQueryOptions Default()
{
return new();
}
}