> For the complete documentation index, see [llms.txt](https://docs.flowiseai.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flowiseai.com/integrations/langchain/vector-stores/faiss.md).

# Faiss

Faiss is a library for efficient similarity search and clustering of dense vectors. Unlike cloud vector stores, Faiss runs locally on your machine and saves data to your file system.

<figure><img src="/files/gLOJlCir4u9XatsyPmEj" alt="" width="307"><figcaption><p>Faiss Node</p></figcaption></figure>

## Prerequisites

### Method 1: NPM/Source Installation

For local installations, ensure your machine can compile C++ modules.

* **Linux:** Install `build-essential`.
* **MacOS:** Run `xcode-select --install` to get Clang/C++ tools.
* **Windows:** Install Visual Studio Build Tools and Python.

### Method 2: Docker

If you are running Flowise using Docker, Faiss is ready to use.

## Setup

### Inputs

| Input          | Description                                         |
| -------------- | --------------------------------------------------- |
| **Document**   | Connect any node from the Document Loader category. |
| **Embeddings** | Connect any node from the Embeddings category.      |

### Parameters

* **Base Path:** The folder path where the index files (`faiss.index` and `docstore.json`) will be saved.
  * If left blank, data is stored in RAM and will be lost when Flowise restarts.
  * **Docker Path Example:** `/root/.flowise/faiss`
  * > **Note:** Ensure the path is mapped to a volume in your `docker-compose.yml` file to prevent data loss upon container restart.
  * **Local Path Example:** `C:\Users\YourName\flowise_data`

## Configuration and Ingestion

1. Add a new **Faiss** node on the canvas.
2. Enter a folder path in the **Faiss** node’s **Base Path** field.
3. Connect your Document Loader and Embeddings nodes to the **Faiss** node.
4. Click **Upsert Vector Database** to process your documents.

## Verify

To verify your data has been upserted, navigate to the folder you specified in the **Base Path** field. You should see files `faiss.index` and `docstore.json`.

## Resources

* [LangChain JS Faiss Documentation](https://docs.langchain.com/oss/javascript/integrations/vectorstores/faiss)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.flowiseai.com/integrations/langchain/vector-stores/faiss.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
