mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 00:36:56 +02:00
doc updates
This commit is contained in:
parent
df48ac2416
commit
b62f6f19a8
31 changed files with 751 additions and 97 deletions
49
site/getting-started/installation.md
Normal file
49
site/getting-started/installation.md
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# Installing
|
||||
|
||||
You have several options to include `sqlite-vec` into your projects, including
|
||||
PyPi packages for Python, NPM packages for Node.js, Gems for Ruby, and more.
|
||||
|
||||
## With popular package managers
|
||||
|
||||
::: code-group
|
||||
|
||||
```bash [Python]
|
||||
pip install sqlite-vec
|
||||
```
|
||||
|
||||
```bash [Node.js]
|
||||
npm install sqlite-vec
|
||||
```
|
||||
|
||||
```bash [Bun]
|
||||
bun install sqlite-vec
|
||||
```
|
||||
|
||||
```bash [Deno]
|
||||
deno add npm:sqlite-vec
|
||||
```
|
||||
|
||||
```bash [Ruby]
|
||||
gem install sqlite-vec
|
||||
```
|
||||
|
||||
```bash [Rust]
|
||||
cargo add sqlite-vec
|
||||
```
|
||||
|
||||
```bash [Go]
|
||||
go get -u github.com/asg017/sqlite-vec/bindings/go/cgo
|
||||
```
|
||||
|
||||
```bash [Datasette]
|
||||
datasette install datasette-sqlite-vec
|
||||
```
|
||||
|
||||
```bash [sqlite-utils]
|
||||
sqlite-utils install sqlite-utils-sqlite-vec
|
||||
```
|
||||
|
||||
:::
|
||||
|
||||
Alternatively, you can download pre-compiled loadable extensions from the
|
||||
[`sqlite-vec` Github Releases](https://github.com/asg017/sqlite-vec/releases/latest).
|
||||
7
site/getting-started/introduction.md
Normal file
7
site/getting-started/introduction.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Introduction to `sqlite-vec`
|
||||
|
||||
## Intro to Vector Databases
|
||||
|
||||
## Vector Search in SQLite with `sqlite-vec`
|
||||
|
||||
## Getting help
|
||||
0
site/getting-started/quickstart.md
Normal file
0
site/getting-started/quickstart.md
Normal file
Loading…
Add table
Add a link
Reference in a new issue