Skip to content

Commit

Permalink
Add new Lucene file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
benwtrent committed Nov 13, 2023
1 parent cab7018 commit 7e20daf
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ public enum LuceneFilesExtensions {
// kNN vectors format
VEC("vec", "Vector Data", false, true),
VEX("vex", "Vector Index", false, true),
VEM("vem", "Vector Metadata", true, false);
VEM("vem", "Vector Metadata", true, false),
VEMF("vemf", "Flat Vector Metadata", true, false),
VEMQ("vemq", "Scalar Quantized Vector Metadata", true, false),
VEQ("veq", "Scalar Quantized Vector Data", false, true);

/**
* Allow plugin developers of custom codecs to opt out of the assertion in {@link #fromExtension}
Expand Down

0 comments on commit 7e20daf

Please sign in to comment.