Metadata-Version: 2.5
Name: anlyon-llamaindex
Version: 0.1.0
Summary: LlamaIndex integration for Anlyon Memory  VectorStore and Retriever
Project-URL: Homepage, https://anlyon.com
Project-URL: Documentation, https://docs.anlyon.com
Project-URL: Repository, https://github.com/AnlyonHQ/anlyon-platform
Project-URL: Issues, https://github.com/AnlyonHQ/anlyon-platform/issues
Author-email: Anlyon <support@anlyon.com>
License-Expression: MIT
License-File: LICENSE
Keywords: agent-governance,ai-agents,anlyon,llamaindex,memory,rag,retriever,sdk,vector-store
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: anlyon>=0.1.0
Requires-Dist: llama-index-core>=0.14.24
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: respx>=0.21; extra == 'dev'
Description-Content-Type: text/markdown

# anlyon-llamaindex

LlamaIndex integration for [Anlyon Memory](https://anlyon.com)  `AnlyonVectorStore` backed by the Anlyon Memory primitive.

## Installation

```bash
pip install anlyon-llamaindex
```

## Usage

```python
from anlyon import Client
from anlyon_llamaindex import AnlyonVectorStore

client = Client()  # uses ANLYON_API_KEY
store = AnlyonVectorStore(client, collection="docs")
```

See the [Anlyon docs](https://docs.anlyon.com) for the full guide.

## License

MIT
