A lightweight evaluation and regression detection library for RAG pipelines.
Project description
ragwatch
ragwatch is a lightweight, zero-friction Python SDK for evaluating, monitoring, and detecting regressions in RAG (Retrieval-Augmented Generation) pipelines.
Think of it as a mini LangSmith or Braintrust — built from scratch.
Features
| Feature | Description |
|---|---|
@monitor decorator |
Drop on any function for instant latency & trace logging |
Evaluator class |
Run evaluations against a golden dataset in one call |
| Regression Detection | Auto-alerts when metrics drop below baseline thresholds |
| SQLite Storage | Human-readable, git-friendly local storage |
| Baseline Promotion | Promote any run to the reference baseline |
Installation
pip install ragwatch
Or install from source (editable mode):
git clone https://github.com/mohammedsohel2052/ragwatch
pip install -e ./ragwatch
Quick Start
1. Zero-Friction Monitoring with @monitor
from ragwatch import monitor
@monitor(project_name="my-rag-bot")
def generate_answer(query, docs):
# Your existing RAG generation code — unchanged
return {"answer": "...", "latency_ms": 120}
Every call now logs a trace to ragwatch.db and prints:
[RAGWatch] ✓ Traced 'generate_answer' | 452ms | project='my-rag-bot'
2. Full Evaluation Pipeline
from ragwatch import Evaluator
evaluator = Evaluator(db_path="eval_results.db", embed_fn=my_embed_fn)
summary = evaluator.evaluate(
golden_dataset=dataset, # list of {"question": ..., "expected_answer": ..., ...}
retrieval_fn=my_retrieval_fn, # fn(query) -> list[dict]
generation_fn=my_generation_fn, # fn(query, docs) -> {"answer": str, "latency_ms": float}
)
3. Regression Detection
# Check current run against the stored baseline
alerts = evaluator.check_regressions(summary)
# If happy with results, promote as the new baseline
evaluator.promote_to_baseline(summary["run_id"])
4. RAGWatch UI Dashboard (Mini-LangSmith)
Visualize your evaluations and live telemetry instantly. From your project root, run:
python -m ragwatch.ui
Then open http://localhost:5050 in your browser.
- Evaluations Tab: Track Precision, Recall, Relevancy, and Faithfulness over time.
- Live Traces Tab: See exactly what your
@monitordecorator is capturing in real-time.
Metrics Explained
| Metric | What it measures |
|---|---|
| Context Precision | Of retrieved chunks, what % were actually relevant? |
| Context Recall | Of all needed chunks, what % did we retrieve? |
| Answer Relevancy | Semantic similarity between generated & expected answer |
| Faithfulness | Did the model hallucinate when it shouldn't have? |
Project Structure
ragwatch/
├── ragwatch/
│ ├── __init__.py # Public API
│ ├── evaluator.py # Main Evaluator class
│ ├── scorer.py # Metric calculation functions
│ ├── storage.py # SQLite persistence (runs + traces)
│ ├── monitor.py # @monitor decorator
│ └── regression.py # Regression alert logic
└── pyproject.toml
Built By
Mohammed Sohel Patwari — GitHub
Inspired by RAGAS, LangSmith, and Braintrust.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ragwatch_sdk-0.1.0.tar.gz.
File metadata
- Download URL: ragwatch_sdk-0.1.0.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
098bdba7a1b4b954637bcc9cdb501e65fc8191934ebe70d1f1f59196c3ba3af2
|
|
| MD5 |
96dd8baa5086152c1d99b376554dc7f4
|
|
| BLAKE2b-256 |
57570ed8c40715598f8da94f4f7740af6363918f8024193e7266f746da9a6686
|
File details
Details for the file ragwatch_sdk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: ragwatch_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cf294edcff81dc4b786ef3c04c8c25aabe2c9645dae8338a3c5893fabdf5a8d
|
|
| MD5 |
b8708b0da526e60ceaabb1bf1fc51858
|
|
| BLAKE2b-256 |
f47d4790e3fd3d80cf9765b456e4f767ca8312113c7cf8845fb85602e40aada2
|