import CodeBlock from "@theme/CodeBlock";

# Voy

[Voy](https://github.com/tantaraio/voy) is a WASM vector similarity search engine written in Rust.
It's supported in non-Node environments like browsers. You can use Voy as a vector store with LangChain.js.

### Install Voy

```bash npm2yarn
npm install voy-search
```

## Usage

import Example from "@examples/indexes/vector_stores/voy.ts";

<CodeBlock language="typescript">{Example}</CodeBlock>