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

13 lines
255 B
C#
Raw Normal View History

2025-08-06 22:40:47 +00:00
namespace BotSharp.Abstraction.VectorStorage.Models;
public class VectorQueryOptions
{
public bool WithPayload { get; set; }
public bool WithVector { get; set; }
public static VectorQueryOptions Default()
{
return new();
}
}