Metadata-Version: 2.4
Name: orchid-rag-qdrant
Version: 1.1.1
Summary: Qdrant vector and doc-store backend for the Orchid AI framework
Author: Orchid Team
License: MIT
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: orchid-ai>=1.8.2
Requires-Dist: qdrant-client>=1.13.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.25.0; extra == 'dev'
Requires-Dist: pytest-cov>=6.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.9.0; extra == 'dev'
Description-Content-Type: text/markdown

# orchid-rag-qdrant

Qdrant vector and doc-store backend for the [Orchid](https://github.com/gadz82/orchid) multi-agent AI framework.

## Installation

```bash
pip install orchid-rag-qdrant
```

## Usage

No code changes are required. Once installed, the package auto-registers
``qdrant`` in Orchid's vector and doc-store backend registries via Python
entry points.

```yaml
# orchid.yml
vector_backend: qdrant
qdrant_url: http://qdrant:6333
```

## Requirements

- Python 3.11+
- A running Qdrant instance (or use the embedded Qdrant client for testing)

## Documentation

See the main [Orchid framework docs](https://github.com/gadz82/orchid) for
full configuration reference and examples.
