5a558eb09e
TypeScript SDK Compatibility V1.x E2E Tests / Select Node version matrix (push) Has been cancelled
TypeScript SDK Compatibility V1.x E2E Tests / TypeScript SDK Compatibility V1.x E2E Tests Node ${{matrix.node_version}} (push) Has been cancelled
TypeScript SDK E2E Tests / TypeScript SDK E2E Tests Node ${{matrix.node_version}} (push) Has been cancelled
Opik Optimizer - E2E Tests / build-opik (push) Has been cancelled
TypeScript SDK Compatibility V1.x E2E Tests / build-opik (push) Has been cancelled
Python SDK E2E Tests / Select Python version matrix (push) Has been cancelled
Python SDK E2E Tests / Python SDK E2E Tests ${{matrix.python_version}} (push) Has been cancelled
Python SDK E2E Tests / build-opik (push) Has been cancelled
Python SDK Compatibility V1.x E2E Tests / Select Python version matrix (push) Has been cancelled
Python SDK Compatibility V1.x E2E Tests / Python SDK Compatibility V1.x E2E Tests ${{matrix.python_version}} (push) Has been cancelled
Python SDK Compatibility V1.x E2E Tests / build-opik (push) Has been cancelled
TypeScript SDK E2E Tests / Select Node version matrix (push) Has been cancelled
TypeScript SDK E2E Tests / build-opik (push) Has been cancelled
Opik Optimizer - E2E Tests / Opik Optimizer E2E Tests Python ${{matrix.python_version}} (push) Has been cancelled
Opik Optimizer - E2E Tests / Opik Optimizer Integration Smoke Tests (push) Has been cancelled
🐙 Code Quality / detect (push) Has been cancelled
🐙 Code Quality / lint (${{ matrix.leg.name }}) (push) Has been cancelled
🐙 Code Quality / summary (push) Has been cancelled
TypeScript SDK Library Integration Tests / Check Secrets (push) Has been cancelled
TypeScript SDK Library Integration Tests / opik-vercel (Vercel AI SDK / eve) (push) Has been cancelled
SDK Library Integration Tests Runner / Check Secrets (push) Has been cancelled
SDK Library Integration Tests Runner / Missed OpenAI API Key Warning (push) Has been cancelled
SDK Library Integration Tests Runner / Build (push) Has been cancelled
SDK Library Integration Tests Runner / openai_tests (push) Has been cancelled
SDK Library Integration Tests Runner / langchain_tests (push) Has been cancelled
SDK Library Integration Tests Runner / langchain_legacy_tests (push) Has been cancelled
SDK Library Integration Tests Runner / llama_index_tests (push) Has been cancelled
SDK Library Integration Tests Runner / anthropic_tests (push) Has been cancelled
SDK Library Integration Tests Runner / mistral_tests (push) Has been cancelled
SDK Library Integration Tests Runner / groq_tests (push) Has been cancelled
SDK Library Integration Tests Runner / aisuite_tests (push) Has been cancelled
SDK Library Integration Tests Runner / haystack_tests (push) Has been cancelled
SDK Library Integration Tests Runner / dspy_tests (push) Has been cancelled
SDK Library Integration Tests Runner / crewai_v0_tests (push) Has been cancelled
SDK Library Integration Tests Runner / crewai_v1_tests (push) Has been cancelled
SDK Library Integration Tests Runner / genai_tests (push) Has been cancelled
SDK Library Integration Tests Runner / adk_tests (push) Has been cancelled
SDK Library Integration Tests Runner / adk_legacy_1_3_0_tests (push) Has been cancelled
SDK Library Integration Tests Runner / evaluation_metrics_tests (push) Has been cancelled
SDK Library Integration Tests Runner / bedrock_tests (push) Has been cancelled
SDK Library Integration Tests Runner / litellm_tests (push) Has been cancelled
SDK Library Integration Tests Runner / harbor_tests (push) Has been cancelled
SDK Library Integration Tests Runner / Slack Notification (push) Has been cancelled
Lint Opik Helm Chart / render-equality (push) Has been cancelled
Opik Optimizer - Unit Tests / Opik Optimizer Unit Tests Python ${{matrix.python_version}} (push) Has been cancelled
Python BE E2E Tests / Python BE E2E (push) Has been cancelled
Python Backend Tests / run-python-backend-tests (push) Has been cancelled
Python SDK Unit Tests / Python SDK Unit Tests ${{matrix.python_version}} (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
SDK E2E Libraries Integration Tests / Check Secrets (push) Has been cancelled
SDK E2E Libraries Integration Tests / Missed OpenAI API Key Warning (push) Has been cancelled
SDK E2E Libraries Integration Tests / build-opik (push) Has been cancelled
SDK E2E Libraries Integration Tests / E2E Lib Integration Python ${{matrix.python_version}} (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-gemini) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-langchain) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-openai) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-otel) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-vercel) (push) Has been cancelled
TypeScript SDK Build & Publish / build-and-publish (push) Has been cancelled
TypeScript SDK Unit Tests / Test on Node ${{ matrix.node-version }} (push) Has been cancelled
Backend Tests / discover-tests (push) Has been cancelled
Backend Tests / ${{ matrix.name }} (push) Has been cancelled
Build and Publish SDK / build-and-publish (push) Has been cancelled
Build Opik Docker Images / set-version (push) Has been cancelled
Build Opik Docker Images / build-backend (push) Has been cancelled
Build Opik Docker Images / build-sandbox-executor-python (push) Has been cancelled
Build Opik Docker Images / build-python-backend (push) Has been cancelled
Build Opik Docker Images / build-frontend (push) Has been cancelled
Build Opik Docker Images / create-git-tag (push) Has been cancelled
ClickHouse Migration Cluster Check / validate-clickhouse-migrations (push) Has been cancelled
Docs - Publish / run (push) Has been cancelled
E2E Tests - Post Merge (v2) / 🧪 E2E v2 Tests (${{ github.event.inputs.tier || 't1' }}) (push) Has been cancelled
E2E Tests - Post Merge (v2) / 📢 Slack Notification (push) Has been cancelled
Frontend Unit Tests / Test on Node 20 (push) Has been cancelled
Guardrails E2E Tests / Select Python version matrix (push) Has been cancelled
Guardrails E2E Tests / Guardrails E2E Tests ${{matrix.python_version}} (push) Has been cancelled
Guardrails E2E Tests / 📢 Slack Notification (push) Has been cancelled
Guardrails Backend Unit Tests / Guardrails Backend Unit Tests (push) Has been cancelled
Guardrails Backend Unit Tests / 📢 Slack Notification (push) Has been cancelled
Lint Opik Helm Chart / lint-helm-chart (Helm v3.21.0) (push) Has been cancelled
Lint Opik Helm Chart / lint-helm-chart (Helm v4.2.0) (push) Has been cancelled
Lint Opik Helm Chart / unittest-helm-chart (push) Has been cancelled
172 lines
5.5 KiB
Python
172 lines
5.5 KiB
Python
"""HoVer accuracy and judge feedback metrics."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Iterable
|
|
from typing import Any, TypeVar, cast
|
|
import re
|
|
|
|
from opik.evaluation.metrics.score_result import ScoreResult
|
|
from opik.evaluation.models import models_factory
|
|
from pydantic import BaseModel, ValidationError
|
|
|
|
HOVER_LABELS = {0: "NOT_SUPPORTED", 1: "SUPPORTED"}
|
|
HOVER_JUDGE_MODEL = "openai/gpt-4.1"
|
|
HOVER_JUDGE_TEMPERATURE = 0.0
|
|
_JSON_PATTERN = re.compile(r"\{.*\}", flags=re.DOTALL)
|
|
JudgeResponse = TypeVar("JudgeResponse", bound=BaseModel)
|
|
|
|
|
|
def _extract_json_blob(raw: str) -> str:
|
|
content = raw.strip()
|
|
if content.startswith("```"):
|
|
stripped = content.strip("`")
|
|
content = stripped.split("\n", 1)[1] if "\n" in stripped else stripped
|
|
match = _JSON_PATTERN.search(content)
|
|
return match.group(0) if match else content
|
|
|
|
|
|
def _run_structured_judge(
|
|
*,
|
|
prompt: str,
|
|
response_model: type[JudgeResponse],
|
|
model_name: str,
|
|
temperature: float = 0.0,
|
|
) -> tuple[JudgeResponse | None, str]:
|
|
llm = models_factory.get(model_name=model_name, temperature=temperature)
|
|
raw_output = llm.generate_string(input=prompt)
|
|
for candidate in (raw_output, _extract_json_blob(raw_output)):
|
|
try:
|
|
return response_model.model_validate_json(candidate), raw_output
|
|
except ValidationError:
|
|
continue
|
|
return None, raw_output
|
|
|
|
|
|
def _normalize_hover_label(raw_label: Any) -> str | None:
|
|
if isinstance(raw_label, int):
|
|
return HOVER_LABELS.get(raw_label)
|
|
if isinstance(raw_label, str):
|
|
label = raw_label.strip().upper()
|
|
if "NOT" in label and "SUPPORT" in label:
|
|
return "NOT_SUPPORTED"
|
|
if "REFUTED" in label:
|
|
return "NOT_SUPPORTED"
|
|
if "SUPPORTED" in label:
|
|
return "SUPPORTED"
|
|
return None
|
|
|
|
|
|
def _format_supporting_facts(facts: Iterable[Any] | None) -> str:
|
|
rows = []
|
|
for fact in facts or []:
|
|
if isinstance(fact, dict):
|
|
rows.append(
|
|
f"- {fact.get('key', 'unknown')} (sentence {fact.get('value')})"
|
|
)
|
|
else:
|
|
rows.append(f"- {fact}")
|
|
return "\n".join(rows) if rows else "No supporting facts provided."
|
|
|
|
|
|
def hover_label_accuracy(dataset_item: dict[str, Any], llm_output: str) -> ScoreResult:
|
|
gold_label = _normalize_hover_label(dataset_item.get("label"))
|
|
predicted = _normalize_hover_label(llm_output)
|
|
value = float(predicted == gold_label) if (gold_label and predicted) else 0.0
|
|
|
|
if not gold_label:
|
|
reason = "Gold label missing from dataset row."
|
|
elif not predicted:
|
|
reason = (
|
|
"Model output did not contain a recognizable HoVer label "
|
|
"(expected SUPPORTED or NOT_SUPPORTED)."
|
|
)
|
|
elif value == 1.0:
|
|
reason = f"Matched HoVer label `{gold_label}`."
|
|
else:
|
|
reason = f"Expected `{gold_label}` but model predicted `{predicted}`."
|
|
|
|
return ScoreResult(
|
|
name="hover_accuracy",
|
|
value=value,
|
|
reason=reason,
|
|
metadata={"gold_label": gold_label, "prediction": predicted},
|
|
)
|
|
|
|
|
|
class HoverJudgeResponse(BaseModel):
|
|
label_match: bool
|
|
explanation: str
|
|
score: float | None = None
|
|
suggestions: str | None = None
|
|
|
|
|
|
HOVER_JUDGE_PROMPT = """You are an expert judge evaluating a HoVer claim-verification run.
|
|
Compare the model's verdict with the gold label and explain the decision quality.
|
|
|
|
Guidance for scoring:
|
|
- The model verdict should match the gold label (SUPPORTED or NOT_SUPPORTED).
|
|
- Be vigilant for partial hallucinations or misattributions (e.g., wrong entity/date pairing).
|
|
- Consider whether the model introduces unsupported facts or contradicts the gold label/facts.
|
|
- Assign a score in [0, 1] where:
|
|
* 1.0 = completely wrong / unfaithful to the gold label and facts
|
|
* 0.0 = perfectly faithful to the gold label and facts
|
|
* Intermediate values reflect partial correctness or minor issues.
|
|
|
|
Return strict JSON with: label_match (boolean), score (0-1 float), explanation, suggestions.
|
|
|
|
Claim:
|
|
{claim}
|
|
|
|
Gold label: {gold_label}
|
|
Gold supporting facts:
|
|
{supporting_facts}
|
|
|
|
Model verdict / reasoning:
|
|
{prediction}
|
|
"""
|
|
|
|
|
|
def hover_judge_feedback(dataset_item: dict[str, Any], llm_output: str) -> ScoreResult:
|
|
gold_label = _normalize_hover_label(dataset_item.get("label")) or "UNKNOWN"
|
|
supporting_facts = cast(Iterable[Any] | None, dataset_item.get("supporting_facts"))
|
|
prompt = HOVER_JUDGE_PROMPT.format(
|
|
claim=str(dataset_item.get("claim", "")),
|
|
gold_label=gold_label,
|
|
supporting_facts=_format_supporting_facts(supporting_facts),
|
|
prediction=llm_output or "",
|
|
)
|
|
response, raw_output = _run_structured_judge(
|
|
prompt=prompt,
|
|
response_model=HoverJudgeResponse,
|
|
model_name=HOVER_JUDGE_MODEL,
|
|
temperature=HOVER_JUDGE_TEMPERATURE,
|
|
)
|
|
|
|
if response is None:
|
|
return ScoreResult(
|
|
name="hover_judge",
|
|
value=0.0,
|
|
reason="HoVer judge returned un-parseable output.",
|
|
metadata={"raw_judge_output": raw_output},
|
|
scoring_failed=True,
|
|
)
|
|
|
|
score = (
|
|
max(0.0, min(1.0, float(response.score)))
|
|
if response.score is not None
|
|
else (1.0 if response.label_match else 0.0)
|
|
)
|
|
|
|
return ScoreResult(
|
|
name="hover_judge",
|
|
value=score,
|
|
reason=response.explanation,
|
|
metadata={
|
|
"suggestions": response.suggestions,
|
|
"judge_model": HOVER_JUDGE_MODEL,
|
|
"label_match": response.label_match,
|
|
"raw_score": response.score,
|
|
},
|
|
)
|