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-3.5-turbo", 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.1.1.tar.gz (14.6 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.1.1-py3-none-any.whl (16.7 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for evallm-0.1.1.tar.gz
Algorithm Hash digest
SHA256 26d89fb0d44f86398e69e2ea561b9abb1f595156e76a1e0a622dee2cb5228d25
MD5 b64ee77a9bfe262eb4faa6997d2a8d4d
BLAKE2b-256 73593e74c1cc18103f30f789f9e163aab63d1e58eddebcf9eb57dc05253dce1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: evallm-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 16.7 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.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3245e10b8f9bbe328bbf84446917aff97f2fae1f557571237f51f60770a85b85
MD5 16e060c259c84ae7fc645135181dcfe2
BLAKE2b-256 90bae8f7a22601663cbe1fe4d8a803453753533129d9ef9f7434b9453b50c86c

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