RAG evaluation library — LLM-as-judge for hallucination detection, faithfulness, answer relevancy. Local or self-hosted. Alternative to ragas.
Project description
rageval-ai
Drop-in RAG evaluation for Python — no server required. Evaluate any RAG/LLM output with one function call using LLM-as-judge methodology. Bring your own API key (OpenAI, OpenRouter, Azure, Anthropic), get faithfulness, hallucination, answer relevancy and 8+ more metrics back as a dict.
from rageval_sdk import evaluate
result = evaluate(
question="What is the capital of France?",
answer="Paris.",
contexts=["Paris is the capital of France."],
)
print(result["overall_score"]) # 0.95
print(result["hallucination_score"]) # 0.02
That's it. No Docker, no SaaS account, no opaque internal LLM judge — your key, your model, your data.
Why rageval-ai?
| rageval-ai | Ragas | DeepEval | TruLens | |
|---|---|---|---|---|
| Install & run in 3 lines | ✅ | ⚠️ | ⚠️ | ⚠️ |
| No server / SaaS required | ✅ | ✅ | ✅ | ✅ |
| Bring-your-own LLM (any OpenAI-compatible endpoint) | ✅ | ⚠️ | ⚠️ | ⚠️ |
| OpenRouter / Azure / Anthropic out of the box | ✅ | ⚠️ | ⚠️ | ⚠️ |
| Two-stage judge (cheap+strong models) | ✅ | ❌ | ❌ | ❌ |
| Background / non-blocking evaluation | ✅ | ❌ | ⚠️ | ⚠️ |
| Self-hosted FastAPI server option | ✅ | ❌ | ❌ | ❌ |
| Webhook callbacks | ✅ | ❌ | ❌ | ❌ |
| LangChain callback handler | ✅ | ⚠️ | ⚠️ | ✅ |
| Type hints (PEP 561) | ✅ | ⚠️ | ⚠️ | ⚠️ |
Single dependency (httpx) |
✅ | ❌ | ❌ | ❌ |
✅ = first-class, ⚠️ = possible but more setup, ❌ = not supported.
Use rageval-ai when you want a zero-ceremony way to score RAG outputs from a script, notebook, or production pipeline without adopting a new framework.
Installation
pip install rageval-ai
Requires Python 3.10+. The only runtime dependency is httpx.
Mode 1: Local Evaluation (No Server)
Set your API key once:
export OPENAI_API_KEY="sk-your-key"
Single Trace (3 lines)
from rageval_sdk import evaluate
result = evaluate("What is the capital of France?", "Paris.", ["Paris is the capital of France."])
print(result["overall_score"]) # 0.95
Batch Evaluation
from rageval_sdk import evaluate_batch
results = evaluate_batch([
{"question": "What is RAG?", "answer": "Retrieval-Augmented Generation.", "contexts": ["RAG combines retrieval with generation."]},
{"question": "What is Python?", "answer": "A programming language.", "contexts": ["Python was created by Guido van Rossum."]},
])
for r in results:
print(f"Score: {r['overall_score']}")
Custom Provider (OpenRouter, Azure, etc.)
from rageval_sdk import evaluate, EvalConfig
config = EvalConfig(
api_key="sk-or-...",
base_url="https://openrouter.ai/api/v1",
stage_1_model="qwen/qwen3-235b-a22b-2507",
stage_2_model="qwen/qwen3-32b",
)
result = evaluate("Question?", "Answer.", ["Context."], config=config)
See examples/ for ready-to-run LangChain, LlamaIndex and OpenRouter notebooks.
Mode 2: Self-Hosted Server
Deploy the FastAPI evaluation server on your own infrastructure, then send traces from any client.
1. Deploy Server
git clone https://github.com/CYBki/llm-evaluation.git
cd llm-evaluation
# Configure
cp .env.example .env
nano .env # set your OPENAI_API_KEY and other settings
# Start
docker compose up -d
# Verify
curl http://localhost:8000/health
2. Send Traces via SDK
from rageval_sdk import RagEvalClient
client = RagEvalClient(
api_url="http://your-server:8000",
api_key="your-api-key",
)
# Submit trace for evaluation
result = client.ingest(
question="What is the capital of France?",
answer="The capital of France is Paris.",
contexts=["Paris is the capital and largest city of France."],
)
# Get evaluation results
trace = client.get_trace(result["id"])
print(trace["evaluation"]["overall_score"])
3. Auto-Evaluate in Your RAG Pipeline
from rageval_sdk import RagEvalClient
client = RagEvalClient(api_url="http://your-server:8000", api_key="key")
def handle_query(query):
answer, contexts = my_rag_pipeline(query) # your existing code
# Non-blocking: sends to server for background evaluation
client.ingest(question=query, answer=answer, contexts=contexts)
return answer # user gets answer immediately
4. Webhook Notifications
client.ingest(
question="Q",
answer="A",
contexts=["C"],
webhook_url="https://your-app.com/webhook", # results POSTed here when ready
)
Background Evaluation (Local, Non-blocking)
from rageval_sdk import RagEvaluator
evaluator = RagEvaluator(api_key="sk-...", max_workers=4)
for query in user_queries:
answer, contexts = my_rag_pipeline(query)
evaluator.submit(question=query, answer=answer, contexts=contexts)
results = evaluator.wait()
evaluator.shutdown()
LangChain Integration
from langchain_openai import ChatOpenAI
from rageval_sdk import RagEvalCallback
callback = RagEvalCallback(api_key="sk-...")
llm = ChatOpenAI(callbacks=[callback])
# every LLM call in your chain is auto-evaluated in the background
A full RetrievalQA example is in examples/langchain_integration.py.
Evaluation Metrics
| Metric | Description |
|---|---|
overall_score |
Weighted composite score (0-1) |
hallucination_score |
Detects fabricated information |
faithfulness |
Answer grounded in context |
answer_relevancy |
Answer relevance to question |
context_precision |
Quality of retrieved context |
context_recall |
Coverage of necessary information |
clarity |
Answer clarity |
coherence |
Answer coherence |
helpfulness |
Answer helpfulness |
completeness |
Answer completeness |
citation_check |
Source citation validation |
API Reference
Local Mode
| Function | Description |
|---|---|
evaluate(question, answer, contexts) |
Evaluate single trace (sync) |
evaluate_batch(traces) |
Evaluate multiple traces in parallel |
evaluate_trace(question, answer, contexts, config=) |
Async version |
RagEvaluator(max_workers=4) |
Background evaluator |
EvalConfig(api_key=, base_url=, ...) |
Custom configuration |
Server Mode
| Method | Description |
|---|---|
RagEvalClient(api_url, api_key) |
Connect to server |
client.ingest(question, answer, contexts) |
Submit trace |
client.get_trace(trace_id) |
Get results |
client.list_traces(limit, offset) |
List all traces |
client.health() |
Check server health |
Roadmap
- v0.3 — Async batch API, retry/backoff, deterministic-mode for CI
- v0.4 — Native LlamaIndex evaluator, HuggingFace Space demo
- v1.0 — Stable API, semantic-versioning guarantees
See CHANGELOG.md for release history.
Contributing
Issues and pull requests are welcome. See CONTRIBUTING.md.
License
MIT
Project details
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 rageval_ai-0.2.3.tar.gz.
File metadata
- Download URL: rageval_ai-0.2.3.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3349bfd19ec734db25ae77909da258432900b784cfeb05de308cd9b176fc556a
|
|
| MD5 |
6c0dca6b6b7fec32fee120b3acf010da
|
|
| BLAKE2b-256 |
396b637abe28e63e9fd54d05f3354f37bda8386fd680abd0f9740618c6824953
|
Provenance
The following attestation bundles were made for rageval_ai-0.2.3.tar.gz:
Publisher:
publish.yml on CYBki/llm-evaluation
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rageval_ai-0.2.3.tar.gz -
Subject digest:
3349bfd19ec734db25ae77909da258432900b784cfeb05de308cd9b176fc556a - Sigstore transparency entry: 1602158010
- Sigstore integration time:
-
Permalink:
CYBki/llm-evaluation@4de84465f932a855a43a9fb538a6dcaad4529752 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/CYBki
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4de84465f932a855a43a9fb538a6dcaad4529752 -
Trigger Event:
release
-
Statement type:
File details
Details for the file rageval_ai-0.2.3-py3-none-any.whl.
File metadata
- Download URL: rageval_ai-0.2.3-py3-none-any.whl
- Upload date:
- Size: 32.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb705bab0affb484f0854a9cc5639072d53b19c51a4794471dbbda2091f65dfe
|
|
| MD5 |
59cd83e60ba36754d8bc72fcc00f9109
|
|
| BLAKE2b-256 |
8fd038d1dccfdcf65a07ef827fa3e01b6a24460fd6fe1ec24937ca2fdcddea5a
|
Provenance
The following attestation bundles were made for rageval_ai-0.2.3-py3-none-any.whl:
Publisher:
publish.yml on CYBki/llm-evaluation
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rageval_ai-0.2.3-py3-none-any.whl -
Subject digest:
eb705bab0affb484f0854a9cc5639072d53b19c51a4794471dbbda2091f65dfe - Sigstore transparency entry: 1602158036
- Sigstore integration time:
-
Permalink:
CYBki/llm-evaluation@4de84465f932a855a43a9fb538a6dcaad4529752 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/CYBki
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4de84465f932a855a43a9fb538a6dcaad4529752 -
Trigger Event:
release
-
Statement type: