# Slim Vector Store

## Overview

Slim Vector Store is vector store class designed for RAGchain. At default, Langchain's [Vector Store](https://python.langchain.com/docs/integrations/vectorstores) is fully compatible with RAGchain. But, it is inefficient because it stores all string contents at every vector store. Because of this limitation, you have to spend lots of storage space when using multiple retrievals.&#x20;

RAGchain store vector representation using retrievals, and store string contents to independent DB. So, you don't have to store string contents to vector store.&#x20;

Using Slim Vector Store, it only stores vector representation and passage ids. It will save a lot of storage when you use multiple retrievals.&#x20;

## Supporting Vector Stores

We are implementing many vector stores, but many vector stores are not implemented yet. When you have to use another vector stores, please find it at Langchain's Vector Store. It is fully compatible with RAGchain.

* [Chroma](https://nomadamas.gitbook.io/ragchain-docs/utils/slim-vector-store/chroma-slim)
* [Pincone](https://nomadamas.gitbook.io/ragchain-docs/utils/slim-vector-store/pinecone-slim)


---

# Agent Instructions: 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:

```
GET https://nomadamas.gitbook.io/ragchain-docs/utils/slim-vector-store.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
