namespace VectorSearchApp.Models; public class AddressEmbedding { public Guid Id { get; set; } public string FullAddress { get; set; } = string.Empty; public float[] Vector { get; set; } = Array.Empty(); public float Score { get; set; } }