Skip to main content

A lightweight Python library for hallucination detection and explainability in LLM responses, with claim-level faithfulness verification.

Project description

cavaquinho

Faithfulness hallucination detection for LLM responses

License PyPI version CI HuDEx paper


Most hallucination detectors return a single score. Cavaquinho tells you which claim contradicts which sentence — and runs fully local, with no external API required.

Cavaquinho decomposes a response into atomic claims, verifies each one against a provided context using Natural Language Inference, and returns a structured result with per-claim labels, scores, and evidence.

Inspired by HuDEx: Integrating Hallucination Detection and Explainability.

Installation

# Default — no torch required (bring your own classifier)
pip install cavaquinho

# With local DeBERTa NLI classifier
pip install "cavaquinho[nli]"

Quickstart

from cavaquinho import Validator

# The NLI model (~500 MB) loads here — instantiate once and reuse.
validator = Validator()

result = validator.validate(
    response="The LGPD was created in 2015 during Dilma Rousseff's government.",
    context="The LGPD was enacted on August 14, 2018, by President Michel Temer."
)

print(result.score)             # 0.9998  (≈ 1.0 for strong contradictions)
print(result.is_hallucination)  # True
print(result.summary)
# 1 of 1 claim(s) contradict the provided context.
# Main conflict: 'The LGPD was created in 2015...'
# contradicting evidence: 'The LGPD was enacted on August 14, 2018...'. Score: 1.00.

CLI

cavaquinho validate \
  --response "The LGPD was created in 2015." \
  --context "The LGPD was enacted in 2018 by Michel Temer."

# JSON output for pipelines
cavaquinho validate --response "..." --context "..." --json

# Files and stdin
cavaquinho validate --response-file resp.txt --context-file ctx.txt
cavaquinho validate --response "..." --context-file - < ctx.txt

Exit codes: 0 = no hallucination, 1 = hallucination detected, 2 = error.

Claim-level inspection

Each claim in the response is verified independently. The result exposes the full trace:

for claim in result.claims:
    print(claim.text)      # "The LGPD was created in 2015..."
    print(claim.label)     # Labels.VALUE_CONTRADICTION
    print(claim.score)     # 0.9998  (model confidence, rounded to 4 decimal places)
    print(claim.evidence)  # "The LGPD was enacted on August 14, 2018..."
    print(claim.reason)    # "The LGPD was enacted on August 14, 2018..."

Using the result

from cavaquinho import Validator, Labels

validator = Validator()
result = validator.validate(response=response, context=context)

# threshold-based decision
if result.is_hallucination:
    response = retry_generation()

# per-claim decision
for claim in result.claims:
    if claim.label == Labels.VALUE_CONTRADICTION and claim.score > 0.8:
        logger.warning(f"Conflicting claim: {claim.text}")
        logger.warning(f"Context evidence: {claim.evidence}")

# score-based soft warning
if result.score > 0.3:
    ui.show_disclaimer("This response may contain inaccurate information.")

Batch validation

validator = Validator()

results = validator.validate_batch(
    responses=["Response A.", "Response B.", "Response C."],
    context="The shared retrieved context.",
)

# Or with per-response contexts
results = validator.validate_batch(
    responses=responses,
    contexts=contexts,  # list[str], same length as responses
)

Detection limits and sensitivity

Cavaquinho verifies faithfulness to the provided context, not factual accuracy against external knowledge.

When detection works best:

  • Claims with specific details that directly contradict facts stated in the context.
  • "The LGPD was created in 2015 during Dilma Rousseff's government." detects better than "The LGPD was created in 2015." — more detail gives the NLI model stronger signal.

Known false-negative patterns:

  • Short or vague claims — less context for the model to infer a contradiction. Score may sit just below the threshold.
  • Factual errors absent from context — if the context doesn't contradict the claim, the result will be NEUTRAL, not CONTRADICTION. This is correct faithfulness behaviour, not a miss.
  • True claims near the threshold — a faithful claim may score 0.4999 instead of ENTAILMENT; inspect result.score numerically for critical pipelines.

Adjusting sensitivity with threshold:

# More sensitive — catches more hallucinations, more false positives
validator = Validator(threshold=0.3)

# More conservative — fewer false positives, may miss weak contradictions
validator = Validator(threshold=0.7)

For critical pipelines, inspect result.score directly instead of relying solely on result.is_hallucination.

RAG integration

The context parameter accepts the documents your retriever already returned. No additional steps are required.

LangChain

from cavaquinho import Validator

source_docs = retriever.invoke(query)
context = "\n".join([doc.page_content for doc in source_docs])
response = llm.invoke(query)

validator = Validator()
result = validator.validate(response=response, context=context)

LlamaIndex

from cavaquinho import Validator

response = query_engine.query("What is the LGPD?")
context = "\n".join([node.text for node in response.source_nodes])

validator = Validator()
result = validator.validate(response=str(response), context=context)

Direct LLM call

from cavaquinho import Validator
from openai import OpenAI

client = OpenAI()
docs = retriever.search(query)
context = "\n".join(docs)

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[
        {"role": "system", "content": f"Context: {context}"},
        {"role": "user", "content": query}
    ]
).choices[0].message.content

validator = Validator()
result = validator.validate(response=response, context=context)

Configuration

All components have sensible defaults. Each can be replaced independently.

from cavaquinho import Validator
from cavaquinho.extractor import LLMExtractor
from cavaquinho.classifier import DeBERTaClassifier
from cavaquinho.aggregator import Aggregator
from openai import OpenAI

validator = Validator(
    extractor=LLMExtractor(
        llm_fn=lambda p: OpenAI().chat.completions.create(
            model="gpt-4o",
            messages=[{"role": "user", "content": p}]
        ).choices[0].message.content
    ),
    classifier=DeBERTaClassifier(
        model_name="cross-encoder/nli-deberta-v3-base"
    ),
    aggregator=Aggregator(
        threshold=0.6,
        language="english"
    ),
    language="english"
)

Portuguese

validator = Validator(language="portuguese")

result = validator.validate(
    response="A LGPD foi criada em 2015.",
    context="A LGPD foi sancionada em 14 de agosto de 2018."
)

How it works

Three components run in sequence:

1. Claim extraction. The response is split into atomic sentences using NLTK. Each sentence is treated as an independent, verifiable assertion. An LLMExtractor is available for higher-precision decomposition when a language model client is available.

2. NLI classification. For each claim, the context is split into sentences and the claim is compared against each one using a fine-tuned DeBERTa NLI model (cross-encoder/nli-deberta-v3-base). All (sentence, claim) pairs across all claims are submitted in a single batched model call. The sentence with the highest contradiction score is used as the evidence field — if any sentence contradicts the claim, the result is CONTRADICTION regardless of other scores.

3. Weighted aggregation. Scores are combined using label-weighted averaging. Contradiction labels carry full weight (1.0), neutral labels carry partial weight (0.5), and entailment labels carry no weight (0.0). The aggregated score is compared against a configurable threshold to produce the final is_hallucination decision.

response
    │
    ▼
[ RuleExtractor / LLMExtractor ]   →   ["claim 1", "claim 2", ...]
    │
    ▼ (batched)
[ DeBERTaClassifier            ]   →   [ClaimResult, ClaimResult, ...]
    │
    ▼
[ Aggregator                   ]   →   ValidationResult

Custom components

Every component implements an abstract contract. Custom implementations are supported without modifying any other part of the pipeline:

from cavaquinho.extractor.base import ExtractorContract
from cavaquinho.classifier.base import ClassifierContract
from cavaquinho.models import ClaimResult

class MyExtractor(ExtractorContract):
    def extract(self, response: str, context: str, prompt: str | None = None) -> list[str]:
        ...

class MyClassifier(ClassifierContract):
    def classify_batch(self, claims: list[str], context: str) -> list[ClaimResult]:
        ...

validator = Validator(extractor=MyExtractor(), classifier=MyClassifier())

Output schema

@dataclass(frozen=True)
class ClaimResult:
    text: str            # extracted claim
    evidence: str        # context sentence used in comparison
    label: Labels        # VALUE_ENTAILMENT | VALUE_NEUTRAL | VALUE_CONTRADICTION
    score: float         # model confidence 0.0–1.0, rounded to 4 decimal places
    reason: str | None   # contradicting evidence sentence when label is VALUE_CONTRADICTION

@dataclass(frozen=True)
class ValidationResult:
    score: float                    # weighted aggregate score
    is_hallucination: bool          # score > threshold
    claims: tuple[ClaimResult, ...] # per-claim breakdown (immutable)
    summary: str                    # natural language description of the result

Benchmarks

Faithfulness — HaluEval QA (English)

Evaluated on HaluEval QA (Zhang et al., 2023). Each sample produces two response/context pairs: one hallucinated, one faithful. Full pipeline: RuleExtractor → DeBERTaClassifier → Aggregator (threshold 0.5).

500 samples, threshold 0.5. FNR = false-negative rate (missed hallucinations).

Model Accuracy Precision Recall F1 FNR
cross-encoder/nli-deberta-v3-base (default) 0.608 0.627 0.557 0.590 0.443

Reproduce with: python -m benchmarks.faithfulness_benchmark --n 500 --save results/faithfulness.json

See docs/evaluation.md for methodology, metric definitions, and known limitations.

NLI Component — ASSIN2 Portuguese

Evaluated on the ASSIN2 Brazilian Portuguese validation split (500 sentence pairs, balanced). Binary task: entailment detection vs. non-entailment.

Model Accuracy F1-entailment F1-none ms/sample
Majority baseline 0.500 0.667 0.000
cross-encoder/nli-deberta-v3-base (default) 0.882 0.885 0.879 29.5
MoritzLaurer/mDeBERTa-v3-base-mnli-xnli 0.876 0.884 0.866 28.9

Reproduce with: python -m benchmarks.nli_benchmark --n 500

Limitations

  • Faithfulness scope. Cavaquinho verifies whether the response contradicts the provided context. It does not verify factual accuracy against external knowledge — that requires a separate retrieval or knowledge-base step.
  • Context dependency. Detection quality is proportional to context quality. Incomplete or irrelevant retrieved documents will reduce accuracy.
  • False positives on ambiguous contexts. When the context contains multiple facts about overlapping subjects, the NLI model may classify semantically consistent claims as contradictions.
  • Python 3.10+. Tested on Python 3.11 and 3.12. Python 3.14 is functional but produces deprecation warnings from PyTorch.

Roadmap

v0.2 — Foundation fixes ✅

See CHANGELOG.md for the full list of changes.

v0.3 — Confidence

  • Self-consistency detection via response sampling
  • Consistency scoring across multiple sampled outputs

v0.4 — Factual

  • Optional external search integration (Tavily, Wikipedia API)
  • Factual verification without a pre-supplied context

Contributing

Contributions are welcome. Please open an issue before submitting a pull request for significant changes.

Named after Caco, the cat

Caco, chief hallucination auditor
Caco — chief hallucination auditor

References

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

cavaquinho-0.2.5.tar.gz (25.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cavaquinho-0.2.5-py3-none-any.whl (25.5 kB view details)

Uploaded Python 3

File details

Details for the file cavaquinho-0.2.5.tar.gz.

File metadata

  • Download URL: cavaquinho-0.2.5.tar.gz
  • Upload date:
  • Size: 25.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for cavaquinho-0.2.5.tar.gz
Algorithm Hash digest
SHA256 7715539cdccbffc8b0d355ca04e326ad0a116265e5fa02ec9b04e8fcaa503216
MD5 b50c09995b3278d5496ea46ba086da37
BLAKE2b-256 bdf87c9bf699c747f79e00324c90d4d3b0ebb5db121aee89b22c06cd60548df8

See more details on using hashes here.

File details

Details for the file cavaquinho-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: cavaquinho-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 25.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for cavaquinho-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 c7402ec2399fdb5c0793c6a900b6a5d47de4425a00d67a1c5e93bed88f1b0d87
MD5 1ca26c23bb842e4203001f14dc4d5804
BLAKE2b-256 77220a1c0b529bc5544c2081f9e0aaba71debbf1fd2e60c4ac4101c5de237ef2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page