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
+65-7Lines changed: 65 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,18 @@ Download the appropriate pre-built binary for your platform from the official [R
40
40
- Android
41
41
- iOS
42
42
43
+
### Loading the Extension
44
+
45
+
```sql
46
+
-- In SQLite CLI
47
+
.load ./vector
48
+
49
+
-- In SQL
50
+
SELECT load_extension('./vector');
51
+
```
52
+
53
+
Or embed it directly into your application.
54
+
43
55
### WASM Version
44
56
45
57
You can download the WebAssembly (WASM) version of SQLite with the SQLite Vector extension enabled from: https://www.npmjs.com/package/@sqliteai/sqlite-wasm
implementation 'ai.sqlite:vector:0.9.32' // or 'com.github.sqliteai:sqlite-vector:0.9.32'
98
+
}
78
99
```
79
100
80
-
Or embed it directly into your application.
101
+
After adding the package, you'll need to [enable extractNativeLibs](https://github.com/sqliteai/sqlite-extensions-guide/blob/18acfc56d6af8791928f3ac8df7dc0e6a9741dd4/examples/android/src/main/AndroidManifest.xml#L6).
0 commit comments