Added ability to filter based on score of similarity in a couple ways.

This commit is contained in:
2026-01-13 23:57:09 -05:00
parent 4dac36605b
commit b2c6898140
3 changed files with 25 additions and 7 deletions

View File

@@ -5,4 +5,5 @@ public class AddressEmbedding
public Guid Id { get; set; }
public string FullAddress { get; set; } = string.Empty;
public float[] Vector { get; set; } = Array.Empty<float>();
public float Score { get; set; }
}