Metadata-Version: 2.4
Name: rag-sentinel
Version: 0.1.3
Summary: RAG Evaluation Framework using Ragas metrics and MLflow tracking
Author: RAGSentinel Team
License: MIT
Project-URL: Homepage, https://github.com/yourusername/rag-sentinel
Project-URL: Repository, https://github.com/yourusername/rag-sentinel
Keywords: rag,evaluation,ragas,mlflow,llm,ai
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.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ragas>=0.2.0
Requires-Dist: mlflow>=2.9.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: requests>=2.31.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: langchain-openai>=0.0.5
Requires-Dist: langchain-ollama>=0.0.1
Requires-Dist: langchain-core>=0.1.0
Requires-Dist: datasets>=2.14.0
Dynamic: license-file

# RAGSentinel

RAG Evaluation Framework using Ragas metrics and MLflow tracking.

## Installation

```bash
pip install rag-sentinel
```

## Quick Start

### 1. Initialize Project

```bash
mkdir my-rag-eval
cd my-rag-eval
rag-sentinel init
```

This creates:
- `.env` - LLM/Embeddings API keys
- `config.ini` - App settings and authentication
- `rag_eval_config.yaml` - Master configuration

### 2. Configure

Edit `.env`:
```bash
LLM_PROVIDER=azure
AZURE_LLM_API_KEY=your-api-key
AZURE_LLM_ENDPOINT=https://your-resource.openai.azure.com/
```

Edit `config.ini`:
```ini
[app]
app_url = https://your-rag-app.com/backend

[auth]
type = cookie
cookie_name = session
cookie_value = your-session-cookie
```

### 3. Create Test Dataset

Create `test_dataset.csv`:
```csv
query,ground_truth,chat_id
Hello,Hello! How can I help you?,1
```

### 4. Run Evaluation

```bash
rag-sentinel run
```

View results at: http://127.0.0.1:5001

## CLI Commands

```bash
rag-sentinel init              # Initialize project
rag-sentinel run               # Run evaluation (auto-starts MLflow)
rag-sentinel run --no-server   # Run without starting MLflow
rag-sentinel validate          # Validate configuration
```

## Metrics

- **Faithfulness** - Factual consistency of answer with context
- **Answer Relevancy** - How relevant the answer is to the question
- **Context Precision** - Quality of retrieved context
- **Answer Correctness** - Comparison against ground truth

## License

MIT

