18 lines
421 B
C#
18 lines
421 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BLAIzor.Models
|
|
{
|
|
public class QdrantPoint
|
|
{
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; } // Unique identifier for the snippet
|
|
|
|
[JsonProperty("vector")]
|
|
public float[] Vector { get; set; } // Embedding vector
|
|
|
|
[JsonProperty("payLoad")]
|
|
public SnippetPayload Payload { get; set; } // Metadata and HTML snippet
|
|
}
|
|
|
|
}
|