LLM Evaluation
Software development skill, available on Zeplik
LLM Evaluation is a ready-to-run software development skill on Zeplik. Not for crafting the prompts themselves (use prompt-engineering). Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer.
The LLM Evaluation skill loads automatically when your request matches it, or you can invoke it directly by typing /llm-evaluation in any chat. It works with attachments, connectors, and any model that supports the task, so you get the same expert method every time without setting anything up.
What the LLM Evaluation skill can do
- Design evaluation plans that map quality dimensions to metrics
- Generate runnable eval harness code with pluggable metrics
- Build LLM-as-judge prompts for pointwise or pairwise scoring
- Detect regressions and set up A/B test comparisons with baselines
Try these prompts on Zeplik
Pick a prompt to open it in the Zeplik app. If you are not signed in yet, your prompt is waiting for you the moment you do.
How the LLM Evaluation skill works
/llm-evaluation
Comprehensive evaluation strategies for LLM applications, from automated metrics to human evaluation and A/B testing. The user describes their application and quality concerns (or pastes sample inputs/outputs and existing test cases); deliver an evaluation plan, metric selection with rationale, and runnable eval harness code as chat artifacts. For improving the prompts being evaluated, use prompt-engineering.
When to Use
- Measuring LLM application performance systematically
- Comparing different models or prompts
- Detecting performance regressions before deployment
- Validating improvements from prompt changes
- Establishing baselines and tracking progress over time
- Debugging unexpected model behavior
Core Evaluation Types
1. Automated Metrics
Fast, repeatable, scalable evaluation using computed scores.
Text Generation:
- BLEU: N-gram overlap (translation)
- ROUGE: Recall-oriented (summarization)
- METEOR: Semantic similarity
- BERTScore: Embedding-based similarity
- Perplexity: Language model confidence
Classification:
- Accuracy: Percentage correct
- Precision/Recall/F1: Class-specific performance
- Confusion Matrix: Error patterns
- AUC-ROC: Ranking quality
Retrieval (RAG):
- MRR: Mean Reciprocal Rank
- NDCG: Normalized Discounted Cumulative Gain
- Precision@K: Relevant in top K
- Recall@K: Coverage in top K
2. Human Evaluation
Manual assessment for quality aspects difficult to automate.
Dimensions: accuracy (factual correctness), coherence (logical flow), relevance (answers the question), fluency (natural language quality), safety (no harmful content), helpfulness (useful to the user).
3. LLM-as-Judge
Use stronger LLMs to evaluate weaker model outputs.
Approaches:
- Pointwise: Score individual responses
- Pairwise: Compare two responses
- Reference-based: Compare to gold standard
- Reference-free: Judge without ground truth
Quick Start
from dataclasses import dataclass
from typing import Callable
import numpy as np
@dataclass
class Metric:
name: str
fn: Callable
@staticmethod
def accuracy():
return Metric("accuracy", calculate_accuracy)
@staticmethod
def bleu():
return Metric("bleu", calculate_bleu)
@staticmethod
def bertscore():
return Metric("bertscore", calculate_bertscore)
@staticmethod
def custom(name: str, fn: Callable):
return Metric(name, fn)
class EvaluationSuite:
def __init__(self, metrics: list[Metric]):
self.metrics = metrics
async def evaluate(self, model, test_cases: list[dict]) -> dict:
results = {m.name: [] for m in self.metrics}
for test in test_cases:
prediction = await model.predict(test["input"])
for metric in self.metrics:
score = metric.fn(
prediction=prediction,
reference=test.get("expected"),
context=test.get("context")
)
results[metric.name].append(score)
return {
"metrics": {k: np.mean(v) for k, v in results.items()},
"raw_scores": results
}
# Usage
suite = EvaluationSuite([
Metric.accuracy(),
Metric.bleu(),
Metric.bertscore(),
Metric.custom("groundedness", check_groundedness)
])
test_cases = [
{
"input": "What is the capital of France?",
"expected": "Paris",
"context": "France is a country in Europe. Paris is its capital."
},
]
results = await suite.evaluate(model=your_model, test_cases=test_cases)
Evaluation Plan Workflow
- Clarify what "good" means for this application; pick 2-4 dimensions that matter.
- Match each dimension to the cheapest reliable signal: automated metric, LLM-as-judge, or human review.
- Build a test set from real traffic or the user's pasted examples; include hard and adversarial cases.
- Establish a baseline run, then gate changes (prompt edits, model swaps) on non-regression.
- Deliver the eval harness, judge prompts, and a results-reporting format as chat artifacts.
Detailed Patterns and Worked Examples
Judge prompt templates, pairwise comparison harnesses, statistical significance for A/B tests, and CI regression gating live in references/details.md. Read that file when the navigation tier above is insufficient.
Usage
/llm-evaluation $ARGUMENTS
How to use the LLM Evaluation skill
Sign in to Zeplik
Create a free Zeplik account or sign in. New accounts start with free credits, so you can try the LLM Evaluation skill right away.
Describe your software development task
Ask in plain language, or type /llm-evaluation to invoke the skill directly. Zeplik recognizes the LLM Evaluation skill and applies its method.
Review and refine the result
Zeplik returns a clear, structured answer. Ask follow-ups in the same chat to refine it or take the next step.
Source and credit
- Author
- wshobson
- License
- MIT
Adapted from the open-source wshobson/agents project and tuned to run natively on Zeplik. View source on GitHub.
Frequently asked questions
- What is the LLM Evaluation skill?
- LLM Evaluation is a ready-to-run software development skill on Zeplik. Not for crafting the prompts themselves (use prompt-engineering). Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer.
- How do I use LLM Evaluation on Zeplik?
- Sign in to Zeplik and ask in plain language, or type /llm-evaluation in any chat to invoke it directly. The skill applies its method and returns a result you can refine in the same conversation.
- Which AI model does the LLM Evaluation skill use?
- Any model you choose. Zeplik works across every model in one chat, so the LLM Evaluation skill runs on your preferred model for the task.
- Where does the LLM Evaluation skill come from?
- The LLM Evaluation skill is adapted from the open-source wshobson/agents project (MIT) and tuned to run natively on Zeplik. The original source is linked on this page.
- How much does the LLM Evaluation skill cost?
- Using the skill is free to start. You only spend Zeplik credits when the assistant runs, and new accounts begin with free credits.
Related software development skills
- .NET BackendBuild ASP.NET Core 8+ backends with EF Core: auth, background jobs, production API patterns
- Advanced Git WorkflowsUse for advanced Git surgery: interactive rebase, cherry-pick, bisect, reflog recovery, and history cleanup before merging. Not for parallel worktree workflows (use using-git-worktrees).
- Adversarial Code ReviewHunt for bugs in code the user shares by assuming defects exist and attacking the code through several distinct lenses, then report severity-ranked findings with evidence. Use for "review this", "what could go wrong", "bug hunt", or pre-merge scrutiny of a change. Read-only, it reports problems and does not rewrite the code. Not for style cleanup (use simplify-code) or for writing new code.
- AI Agent FrameworksUse when building multi-agent systems or agent orchestration -- LangChain/LangGraph, agent team design, task coordination, pipelines. Not for authoring a Zeplik skill (use skill-creator).
- Algolia SearchAdd Algolia search: indexing strategies, React InstantSearch, relevance tuning, search-as-you-type
- Android CI/CDAutomate Android CI/CD to Google Play: keystore, GitHub Secrets, multi-stage release workflow for RN, Flutter, native
More on Zeplik
Try LLM Evaluation on Zeplik
Every model, one chat. Bring the LLM Evaluation skill into your next conversation and let the assistant do the work.