mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
e1f4f9ac3e
Added missed pages for `integrations/providers` from `vectorstores`. Updated several `vectorstores` notebooks.
26 lines
809 B
Plaintext
26 lines
809 B
Plaintext
# USearch
|
|
>[USearch](https://unum-cloud.github.io/usearch/) is a Smaller & Faster Single-File Vector Search Engine.
|
|
|
|
>`USearch's` base functionality is identical to `FAISS`, and the interface should look
|
|
> familiar if you have ever investigated Approximate Nearest Neighbors search.
|
|
> `USearch` and `FAISS` both employ `HNSW` algorithm, but they differ significantly
|
|
> in their design principles. `USearch` is compact and broadly compatible with FAISS without
|
|
> sacrificing performance, with a primary focus on user-defined metrics and fewer dependencies.
|
|
>
|
|
## Installation and Setup
|
|
|
|
We need to install `usearch` python package.
|
|
|
|
```bash
|
|
pip install usearch
|
|
```
|
|
|
|
## Vector Store
|
|
|
|
See a [usage example](/docs/integrations/vectorstores/usearch).
|
|
|
|
```python
|
|
from langchain.vectorstores import USearch
|
|
```
|
|
|