mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
523 B
18 lines
523 B
namespace ZeroLevel.Qdrant.Models.Requests
|
|
{
|
|
internal sealed class CreateCollectionReqeust
|
|
{
|
|
public string distance { get; set; }
|
|
public int vector_size { get; set; }
|
|
public bool? on_disk_payload { get; set; }
|
|
|
|
public CreateCollectionReqeust(string distance, int vector_size,
|
|
bool? on_disk_payload = null)
|
|
{
|
|
this.distance = distance;
|
|
this.vector_size = vector_size;
|
|
this.on_disk_payload = on_disk_payload;
|
|
}
|
|
}
|
|
}
|