Skip to main content

A flexible task evaluation client

Project description

🧪 task-evaluator

A lightweight, pluggable Python package to evaluate tasks using different model providers like Ollama and OpenAI — with a unified interface.


📦 Installation

pip install evallm

🚀 Usage

Using Ollama

Before using the LLMEvaluator with Ollama, ensure you have an Ollama server running. If you don't have any, you can start one in your local environment using Ollama CLI. If you don't have it installed, you can download it from here.

After that you can start a server with the following command:

ollama serve

This example assumes you are running a local Ollama server (e.g., at localhost:11434).

from evaluator import LLMEvaluator

# Initialize the Evaluator with Ollama
evaluator = LLMEvaluator(connection="ollama", model="llama3.1:8b", task="summarization")

# Evaluate a task
result = evaluator.evaluate(
    text="The quick brown fox jumps over the lazy dog. The dog was not happy about it.",
    summary="A fox jumps over a dog.",
)
print(result)

Ollama uses port 11434 by default. If you want to change the port, you can specify the full URI when initializing the LLMEvaluator. For example, if you want to use port 12345, you can do it like this:

from evaluator import LLMEvaluator
evaluator = LLMEvaluator(connection="ollama", model="llama3.1:8b", url="http://localhost:12345", task="summarization")

Using OpenAI

Since we do not deploy any LLM models globally, you can only use OpenAI models with your OpenAI API key. You can find the installation instructions here. You can set your OpenAI API key in your environment variables. For example, in a Unix-like terminal, you can do it like this:

export OPENAI_API_KEY="your_openai_api_key"

Or in a Windows terminal, you can do it like this:

set OPENAI_API_KEY="your_openai_api_key"

You can also set the OpenAI API key in your code directly, but it's not recommended for security reasons.

This example assumes you have set up your OpenAI API key in your environment variables.

from evaluator import LLMEvaluator

import os

# Initialize the Evaluator with OpenAI
evaluator = Evaluator(connection="openai", model="gpt-4o-mini", api_key=os.getenv("OPENAI_API_KEY"), task="summarization")

# Evaluate a task
result = evaluator.evaluate(
    text="The quick brown fox jumps over the lazy dog. The dog was not happy about it.",
    summary="A fox jumps over a dog.",
)
print(result)

🔍 Tasks

Currently, the following tasks are supported:

  • 📝 Summarization: Evaluates the quality of a summary given an original text
  • 🔎 NLI: Natural Language Inference to determine relationships between text pairs
  • ⚖️ Pairwise: Compares two outputs to determine which one better meets specified criteria

🧪 Evaluation

The evaluation process is based on the task you choose. The LLMEvaluator class provides a unified interface for evaluating tasks using different model providers.

Summarization

The summarization task evaluates the quality of a summary given an original text. It uses the evaluate method to compare the generated summary with the original text.

from evaluator import LLMEvaluator

evaluator = LLMEvaluator(connection="ollama", model="llama3.1:8b", task="summarization")
result = evaluator.evaluate(
    text="The quick brown fox jumps over the lazy dog. The dog was not happy about it.",
    summary="A fox jumps over a dog.",
    metric="all"  # or "coherence", "fluency", "relevancy", "consistency"
)
print(result)

The evaluate method takes the following parameters:

  • text: The original text to be summarized.
  • summary: The generated summary to be evaluated.
  • metric: The evaluation metric to be used. The default is all, which means all metrics will be used. You can also specify a single metric, such as coherence, fluency, relevancy and consistency.

The method returns a dataclass object containing the evaluation results, including the score and the explanation comes from the evaluation.

  • score: The score of the evaluation (1-5).
  • explanation: The explanation of the evaluation.
  • metric: The metric used for the evaluation.

Note that if you use the all metric, the result will be a list of dataclass objects, each containing the score and explanation for each metric.

NLI

The nli task evaluates the relationship between two text pairs and the label of the relationship. It uses the evaluate method to compare the generated summary with the original text.

from evaluator import LLMEvaluator

evaluator = LLMEvaluator(connection="ollama", model="llama3.1:8b", task="nli")
result = evaluator.evaluate(
    premise="The quick brown fox jumps over the lazy dog.",
    hypothesis="The dog was not happy about it.",
    label="entailment",  # or "contradiction", "neutral"
)

The evaluate method takes the following parameters:

  • premise: The premise of the inference.
  • hypothesis: The hypothesis of the inference.
  • label: The label of the inference. It should be one of these: entailment, contradiction or neutral.

The method returns a dataclass object containing the evaluation results, including the pass/fail status and the explanation comes from the evaluation.

  • status: The status of the evaluation. It is True if the evaluation passed, otherwise False.
  • explanation: The explanation of the evaluation.

Pairwise

The pairwise task evaluates a question and two outputs to determine which one better meets the needs in the question. It uses the evaluate method to compare the two outputs.

from evaluator import LLMEvaluator

evaluator = LLMEvaluator(connection="ollama", model="llama3.1:8b", task="pairwise")

result = evaluator.evaluate(
    question="Give me a sentence about a dog.",
    output1="The quick brown fox jumps over the lazy cat.",
    output2="The dog is barking at the cat.",
)

The evaluate method takes the following parameters:

  • question: The question to be answered.
  • output1: The first output to be evaluated.
  • output2: The second output to be evaluated.

The method returns a dataclass object containing the evaluation results, including the choice and the explanation comes from the evaluation.

  • choice: The choice of the evaluation. It is 1 if the first output is better, 2 if the second output is better.
  • explanation: The explanation of the evaluation.

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

evallm-0.2.0.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

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

evallm-0.2.0-py3-none-any.whl (18.6 kB view details)

Uploaded Python 3

File details

Details for the file evallm-0.2.0.tar.gz.

File metadata

  • Download URL: evallm-0.2.0.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for evallm-0.2.0.tar.gz
Algorithm Hash digest
SHA256 737af972da47a89d3068f51e26727cf4d389d1c34757731914072d7470884c66
MD5 1d56626c56a4af0e016d6c1a24712e1b
BLAKE2b-256 f10ef691ad55072230b7d5c5354391a66db5be9b8493802b082a04771acc12a2

See more details on using hashes here.

File details

Details for the file evallm-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: evallm-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 18.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for evallm-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 75af784be87501d569335ff11bf8b3951d14135c446dc10c607bed1b0f64b81d
MD5 0a8684fab8a54208562fdea1045382c9
BLAKE2b-256 9e0242e85b6eba97023e21594e5d628f49b07dd25c8251c33e663652687d1b36

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