# RAG Pipeline Dependencies
# Production-ready dependencies for RAG systems

# Core Framework
fastapi>=0.109.0
uvicorn[standard]>=0.27.0
pydantic>=2.6.0

# AI/ML Dependencies
openai>=1.12.0
tiktoken>=0.6.0

# Vector Database
qdrant-client>=1.7.3

# Document Processing
# No LangChain dependency - using custom recursive splitter
python-multipart>=0.0.9

# Async Support
asyncio-mqtt>=0.16.1
aiofiles>=23.2.1

# Data Processing
numpy>=1.26.0
pandas>=2.2.0
python-dotenv>=1.0.1

# HTTP Client
httpx>=0.26.0
requests>=2.31.0

# Development and Testing
pytest>=8.0.0
pytest-asyncio>=0.23.0
pytest-cov>=4.1.0
black>=24.1.0
isort>=5.13.0
mypy>=1.8.0

# Monitoring and Logging
structlog>=24.1.0
prometheus-client>=0.19.0

# Security
python-jose[cryptography]>=3.3.0
passlib[bcrypt]>=1.7.4
