Skip to content

Commit ae8a65c

Browse files
authored
Update README.md
1 parent 594d0a0 commit ae8a65c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sqlite-memory bridges these concepts, allowing any SQLite-powered application to
3434
- **Hybrid Search**: Combines vector similarity (cosine distance) with FTS5 full-text search for superior retrieval
3535
- **Smart Chunking**: Markdown-aware parsing preserves semantic boundaries
3636
- **Efficient Storage**: Binary embeddings with configurable dimensions
37-
- **Flexible Embedding**: Use local models (llama.cpp) or [vector.space](https://vector.space) remote API
37+
- **Flexible Embedding**: Use local models (llama.cpp) or [vectors.space](https://vectors.space) remote API
3838

3939
## Architecture
4040

@@ -58,10 +58,10 @@ sqlite-memory bridges these concepts, allowing any SQLite-powered application to
5858

5959
### Prerequisites
6060

61-
- SQLite 3.38+ with FTS5 support
61+
- SQLite
6262
- [sqlite-vector](https://github.com/sqliteai/sqlite-vector) extension
6363
- **For local embeddings**: A GGUF embedding model (e.g., [nomic-embed-text](https://huggingface.co/nomic-ai/nomic-embed-text-v1.5-GGUF))
64-
- **For remote embeddings**: A free API key from [vector.space](https://vector.space)
64+
- **For remote embeddings**: A free API key from [vectors.space](https://vectors.space)
6565

6666
### Quick Start
6767

@@ -75,7 +75,7 @@ sqlite-memory bridges these concepts, allowing any SQLite-powered application to
7575
-- Option 1: Local embedding with llama.cpp (no internet required)
7676
SELECT memory_set_model('local', '/path/to/nomic-embed-text-v1.5.Q8_0.gguf');
7777

78-
-- Option 2: Remote embedding via vector.space (requires free API key from https://vector.space)
78+
-- Option 2: Remote embedding via vectors.space (requires free API key from https://vectors.space)
7979
-- SELECT memory_set_model('openai', 'text-embedding-3-small');
8080
-- SELECT memory_set_apikey('your-vectorspace-api-key');
8181

@@ -216,7 +216,7 @@ make test
216216
| `make wasm` ||||
217217

218218
- **Local Engine**: Built-in llama.cpp for on-device embeddings (requires GGUF model)
219-
- **Remote Engine**: [vector.space](https://vector.space) API for cloud embeddings (requires free API key)
219+
- **Remote Engine**: [vectors.space](https://vectors.space) API for cloud embeddings (requires free API key)
220220
- **File I/O**: `memory_add_file` and `memory_add_directory` functions
221221

222222
You can also combine options manually:

0 commit comments

Comments
 (0)