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.
Zero/ZeroLevel.Qdrant/Models/Responces/SearchResponse.cs

15 lines
361 B

namespace ZeroLevel.Qdrant.Models.Responces
{
public sealed class ScoredPoint
{
public long id { get; set; }
2 years ago
public float score { get; set; }
}
public sealed class SearchResponse
{
public ScoredPoint[] result { get; set; }
public string status { get; set; }
public float time { get; set; }
}
}

Powered by TurnKey Linux.