Metadata-Version: 2.4
Name: rag-eval-lite
Version: 0.1.0
Summary: Lightweight evaluation metrics for RAG (Hit@k, Recall@k, MRR, nDCG)
Author: Your Name
Project-URL: Homepage, https://github.com/yourusername/rag-eval-lite
Keywords: rag,evaluation,retrieval,ml,nlp
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# rag-eval-lite

Lightweight RAG evaluation metrics.

## Install
pip install rag-eval-lite

## Usage
```python
from rag_eval import evaluate_dataset

results = evaluate_dataset(data, k=3)
print(results)
