Skip to main content

This library allows for granular testing of llm-applications based on expert input.

Project description

ragpill logo

Stop believing your chatbot. Take the ragpill.

CI PyPI version Python versions Codecov License: MIT Documentation Ruff basedpyright


ragpill is an evaluation framework for LLM agents and RAG pipelines. Define facts, sources, and tool call expectations — and find out what your AI actually does.

What is RAGPill?

If you are building an LLM-based application, ragpill's ultimate goal is to help you:

  1. Build a testset that captures what "good" looks like for your application — facts, sources, tool calls, and domain-specific criteria.
  2. Run it locally against your app, with first-class integrations for MLflow (today) and Langfuse (planned), so traces and evaluations live next to your existing observability stack.
  3. Integrate it into your workflow (CI/CD, pre-deploy checks, local iteration loops) to prevent regressions and objectively measure progress when you tweak system prompts, swap models, change retrieval parameters, or refactor agent logic.

It specializes in "offline" evaluation of LLM-based systems — meant to be part of your CI/CD pipeline or scheduled tests, not real-time monitoring.

RAGPill helps you:

  • Create test datasets from CSV files - Easy collaboration with domain experts
  • Define custom evaluators - Add domain-specific knowledge to evaluations
  • Track results in MLflow - Full experiment tracking and tracing
  • Follow best practices - Opinionated design guides you to robust testing

Where this is heading: agent-assisted evaluation

ragpill is built so that an agent (e.g. Claude Code) can be a first-class participant in the evaluation loop:

  • Testset co-creation: ragpill will expose a skill that your agent can consume to build the testset together with the developer — turning vague product expectations into concrete cases, evaluators, tags, and attributes.

  • Investigative harness: the package will provide the harness an agent needs to investigate an evaluation run and suggest improvements — to the testset, the application config, or the overall solution.

    Example: a question asks about the timeline of events scattered across different chunks. The agent analyzes the failed run, notices the timestamps are already present in chunk metadata but can't be filtered on, which clutters retrieval with irrelevant chunks — and suggests adding a metadata filter on the date field.

Core Philosophy

Here we focus a lot on the LLM Judge evaluator, although it's the last evaluator you should use - prefer deterministic evaluators (regex, exact match) whenever possible. However, for deterministic tests, there's already a lot of tooling available, like pytest for example (yes, we like the 'code-first' approach).

Expert-Defined Attributes

LLM judges usually lack context awareness to judge which discrepancies between chatbot answers and expected answers are relevant - especially in specialized fields like law, engineering, and science where words have precise definitions.

Domain experts should define specific attributes and criteria for evaluation.

Binary Evaluations

We use boolean pass/fail values only, not scoring scales (1-10), because:

  • Scales are arbitrary and often decided by LLMs
  • Binary decisions are more stable and reproducible (although LLMs of course remain probabilistic)
  • Easier to track and reason about over time

Tags and Attributes for Organization

Evaluators can have:

  • Tags: Categorical labels for filtering (e.g., retrieval, time-aware-rag, basic_logic)
  • Attributes: Key-value metadata for categorization (e.g., importance: high, scope: Phase1)

Metrics are automatically calculated per tag and attribute.

Quick Navigation

Getting Started:

Evaluators:

Key Concepts

ragpill is built around three independent layers — execute, evaluate, upload — so you can mix and match them to fit your workflow. See the Layered Architecture Guide for details.

Key Components

  • Dataset / Case: Plain dataclasses from ragpill.eval_types that hold test cases with inputs, evaluators, and metadata
  • Evaluators: Check if outputs meet criteria (LLMJudge, regex matchers, custom evaluators)
  • Three-Layer Pipeline: execute_dataset (run tasks + capture traces) → evaluate_results (apply evaluators) → upload_to_mlflow (persist). Use the layers independently or together via evaluate_testset_with_mlflow. See the Layered Architecture Guide.

Features

  • Async-only API: Integrates naturally with modern async frameworks. Wrap in asyncio.run() if you need sync.
  • Dual-backend tracing: Capture traces to a local temp SQLite DB (no server needed) or directly to an MLflow server.
  • Run once, evaluate many: The captured DatasetRunOutput is JSON-serializable, so you can re-evaluate historical outputs against new evaluator sets without re-running the task.
  • Great MLflow Integration: Traces your agent/function execution to MLflow with evaluations in the native format
  • CSV/Excel Adapter: Load test cases from CSV files with evaluator configurations
  • Flexible Evaluators: Built-in LLM judges, regex matchers, and easy custom evaluator creation
  • Metrics per Tags/Attributes: Automatic metric calculation for each tag and attribute combination
  • Type Safety: Built on plain dataclasses with full type safety throughout

Built-in Evaluators

Best Practices

[!TIP] TDD Mindset — Begin with defining a Test-Set with potential users before even starting to develop the solution. This enables clear expectation management and progress tracking.

[!TIP] Create Multiple Testsets — It might make sense for you to have some core tests that run relatively quickly and inexpensive - use these for development. Before deploying to prod, you can run an exhaustive dataset that is integrated in your CI/CD.

[!TIP] Separate Evaluation Experiments — Create dedicated MLflow experiments for evaluations. Don't mix evaluation traces with production traces.

[!TIP] Use Domain Experts — Have domain experts define evaluation criteria rather than relying solely on generic LLM judges.

[!TIP] Version Your Tests — Keep test datasets in version control alongside your code.

Documentation

Full documentation is available at joelgotsch.github.io/ragpill/latest including:

  • Installation Guide: Setup instructions
  • Quickstart Tutorial: Run your first evaluation
  • CSV Adapter Guide: Learn the CSV format and column meanings
  • Evaluators Guide: Create custom evaluators
  • MLflow Integration: Advanced MLflow usage
  • API Reference: Complete API documentation

Roadmap

  • Adapter for testset from CSV
  • Documentation via mkdocs
  • Evaluators for sources and regex
  • Repeat Task Evaluations (run task multiple times and evaluate with threshold)
  • Adapter for task from CSV (upload to mlflow)
  • Create demo video
  • CI/CD (tests, build package, publish docs)
  • Global evaluators from CSV (empty input)
  • Track git-commit hash in experiment
  • Tests with mlflow server
  • Dependency injection for llm, input_to_key functions
  • pytest integration

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

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

ragpill-0.5.0.tar.gz (92.1 kB view details)

Uploaded Source

Built Distribution

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

ragpill-0.5.0-py3-none-any.whl (113.8 kB view details)

Uploaded Python 3

File details

Details for the file ragpill-0.5.0.tar.gz.

File metadata

  • Download URL: ragpill-0.5.0.tar.gz
  • Upload date:
  • Size: 92.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ragpill-0.5.0.tar.gz
Algorithm Hash digest
SHA256 0089857cbd7ace3f9ebf8afa41cfcf966702159c74cc534df5c40a584cb14a29
MD5 1a1cbed411847cd13c057f6c98062ceb
BLAKE2b-256 ca34086927ab9bf8436cf4d946d946f3a841a17e1be5fb4e82f2ab844d0fb3bf

See more details on using hashes here.

File details

Details for the file ragpill-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: ragpill-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 113.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ragpill-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0d331dd91d54102a7a8ae343d4ea425077a4a2638a47fe1aaf565123a8e228d7
MD5 5e7c47fc1da4ce187b2fa9cde880ab19
BLAKE2b-256 63f42c40e8e4281b9a2231bd3b396a11dd21b375e1fb220ff5c1877804cfc020

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