Fixed embedding mismatch

This commit is contained in:
2026-03-18 22:12:18 +00:00
parent a7574d2a93
commit bec0f37623
4 changed files with 6 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ public class ApplicationDbContext : IdentityDbContext<IdentityUser>
else
{
entity.Property(r => r.Embedding)
.HasColumnType("vector(1536)");
.HasColumnType("vector(768)");
}
});
}