Metadata-Version: 2.4
Name: llama-index-storage-chat-store-gel
Version: 0.2.0
Summary: llama-index storage-chat-store gel integration
Author-email: Your Name <you@example.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: <4.0,>=3.9
Requires-Dist: gel>=3.0.1
Requires-Dist: jinja2>=3.1.4
Requires-Dist: llama-index-core<0.14,>=0.13.0
Description-Content-Type: text/markdown

# LlamaIndex Chat_Store Integration: Gel Chat Store

## Installation

`pip install llama-index-storage-chat-store-gel`

## Usage

Using `GelChatStore`, you can persist your chat history automatically and not have to worry about saving and loading it manually.

```python
from llama_index.storage.chat_store.gel import GelChatStore
from llama_index.core.memory import ChatMemoryBuffer

chat_store = GelChatStore()

chat_memory = ChatMemoryBuffer.from_defaults(
    token_limit=3000,
    chat_store=chat_store,
    chat_store_key="user1",
)
```
