# Requirements for Advanced Markdown RAG System
# This file contains all dependencies needed for the markdown knowledge base RAG system

# Core dependencies from base RAG system
sentence-transformers>=2.2.0
numpy>=1.21.0
torch>=2.0.0  # Required by sentence-transformers

# File watching for automatic knowledge base updates
watchdog>=3.0.0

# Ceylon agent framework (built from local source)
# Install with: pip install -e /path/to/next-processor/bindings/python

# Optional: Additional embedding models
# Uncomment if you want more advanced models
# transformers>=4.30.0

# Optional: Progress bars and utilities
# tqdm>=4.65.0  # Already included in sentence-transformers

# Development dependencies (optional)
# pytest>=7.0.0
# black>=23.0.0
# flake8>=6.0.0
