13 lines
255 B
C#
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();
|
||
|
|
}
|
||
|
|
}
|