Skip to content

Commit ef5c8ff

Browse files
committed
2 parents cd721fe + ec57b0e commit ef5c8ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SQLite-Vector: Fast, Lightweight Vector Search Extension for SQLite
1+
# SQLite Vector
22

3-
**SQLite-Vector** is a cross-platform, ultra-efficient SQLite extension that brings vector search capabilities to your embedded database. It works seamlessly on **iOS, Android, Windows, Linux, and macOS**, using just **30MB of memory** by default. With support for **Float32, Float16, BFloat16, Int8, and UInt8**, and **highly optimized distance functions**, it's the ideal solution for **Edge AI** applications.
3+
**SQLite Vector** is a cross-platform, ultra-efficient SQLite extension that brings vector search capabilities to your embedded database. It works seamlessly on **iOS, Android, Windows, Linux, and macOS**, using just **30MB of memory** by default. With support for **Float32, Float16, BFloat16, Int8, and UInt8**, and **highly optimized distance functions**, it's the ideal solution for **Edge AI** applications.
44

55
## 🚀 Highlights
66

@@ -101,7 +101,7 @@ SELECT vector_quantize_preload('images', 'embedding');
101101

102102
-- Run a nearest neighbor query (returns top 20 closest vectors)
103103
SELECT e.id, v.distance FROM images AS e
104-
JOIN vector_quantize_scan('images', 'embedding', 20) AS v
104+
JOIN vector_quantize_scan('images', 'embedding', ?, 20) AS v
105105
ON e.id = v.rowid;
106106
```
107107

0 commit comments

Comments
 (0)