Metadata-Version: 2.4
Name: llama-index-vector-store-firestore
Version: 0.4.1
Summary: llama-index vector_store firestore integration
Author-email: Your Name <you@example.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: <4.0,>=3.9
Requires-Dist: google-cloud-firestore<3.0.0,>=2.16.0
Requires-Dist: llama-index-core<0.15,>=0.13.0
Requires-Dist: more-itertools<11.0.0,>=10.2.0
Description-Content-Type: text/markdown

# LlamaIndex Vector_Store Integration: Firestore

<a href="https://colab.research.google.com/github/run-llama/llama_index/blob/main/docs/examples/vector_stores/FirestoreVectorStore.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a>

A LlamaIndex vector store using Cloud Firestore as the backend.

## Usage

Pre-requisite:

```bash
pip install llama-index-vector-stores-firestore
```

Minimal example:

```python
from llama_index_vector_stores_firestore import FirestoreVectorStore

store = FirestoreVectorStore(
    collection_name=COLLECTION_NAME,
)
```

## More examples and references

Check out the [notebook](https://colab.research.google.com/github/run-llama/llama_index/blob/main/docs/examples/vector_stores/FirestoreVectorStore.ipynb) for detailed usage.
