You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-13Lines changed: 29 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,17 @@
5
5
An extremely small, "fast enough" vector search SQLite extension that runs
6
6
anywhere! A successor to [sqlite-vss](https://github.com/asg017/sqlite-vss)
7
7
8
-
> [!IMPORTANT] > _`sqlite-vec` is a work-in-progress and not ready for general usage! I plan to launch a "beta" version in the next month or so. Watch this repo for updates, and read [this blog post](https://alexgarcia.xyz/blog/2024/building-new-vector-search-sqlite/index.html) for more info._
8
+
<!-- deno-fmt-ignore-start -->
9
+
10
+
> [!IMPORTANT]
11
+
> _`sqlite-vec` is a work-in-progress and not ready for general usage! I plan to launch a "beta" version in the next month or so. Watch this repo for updates, and read [this blog post](https://alexgarcia.xyz/blog/2024/building-new-vector-search-sqlite/index.html) for more info._
12
+
13
+
<!-- deno-fmt-ignore-end -->
9
14
10
15
- Store and query float, int8, and binary vectors in `vec0` virtual tables
11
16
- Pre-filter vectors with `rowid IN (...)` subqueries
12
-
- Written in pure C, no dependencies,
13
-
runs anywhere SQLite runs (Linux/MacOS/Windows, in the browser with WASM,
14
-
Raspberry Pis, etc.)
17
+
- Written in pure C, no dependencies, runs anywhere SQLite runs
18
+
(Linux/MacOS/Windows, in the browser with WASM, Raspberry Pis, etc.)
15
19
16
20
<palign="center">
17
21
<imgsrc="./.github/logos/mozilla.svg"width=400 />
@@ -67,13 +71,15 @@ limit 2;
67
71
68
72
## Roadmap
69
73
70
-
Not currently implemented, but planned in the future (after initial `v0.1.0` version):
74
+
Not currently implemented, but planned in the future (after initial `v0.1.0`
If your company interested in sponsoring `sqlite-vec` development, send me an email to get more info: https://alexgarcia.xyz
112
+
If your company interested in sponsoring `sqlite-vec` development, send me an
113
+
email to get more info: https://alexgarcia.xyz
102
114
103
115
## See Also
104
116
105
-
-[**`sqlite-ecosystem`**](https://github.com/asg017/sqlite-ecosystem), Maybe more 3rd party SQLite extensions I've developed
106
-
-[**`sqlite-rembed`**](https://github.com/asg017/sqlite-rembed), Generate text embeddings from remote APIs like OpenAI/Nomic/Ollama, meant for testing and SQL scripts
107
-
-[**`sqlite-lembed`**](https://github.com/asg017/sqlite-lembed), Generate text embeddings locally from embedding models in the `.gguf` format
0 commit comments