Lots of groundwork and the app runs but not currently working to generate embeddings.
This commit is contained in:
8
VectorSearchApp/Models/Address.cs
Normal file
8
VectorSearchApp/Models/Address.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace VectorSearchApp.Models;
|
||||
|
||||
public class Address
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
public string FullAddress { get; set; } = string.Empty;
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
}
|
||||
8
VectorSearchApp/Models/AddressEmbedding.cs
Normal file
8
VectorSearchApp/Models/AddressEmbedding.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
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<float>();
|
||||
}
|
||||
Reference in New Issue
Block a user