asg017 / sqlite-vss

A SQLite extension for efficient vector search, based on Faiss!
MIT License
1.71k stars 62 forks source link

`vss0` constructor: table-level options #27

Open asg017 opened 1 year ago

asg017 commented 1 year ago
create virtual table demo1 using vss0(
  factory="IVF4096,Flat,IDMap2",
  metric_type=L1,
  a(100),
  b(100),
  c(100)
);
create virtual table demo1 using vss0(
  factory="IVF4096,Flat,IDMap2",
  metric_type=L1,
  a(100) factory="Flat,IDMap2",
  b(100) metric_type=L2,
  c(100)
);