From 5497674b34204f2ec1fabf10d5239f403f7f89ea Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Fri, 27 Feb 2026 00:10:43 -0800 Subject: [PATCH] feat: ZeroShotAdapter, GLiClassAdapter, RerankerAdapter with full mock test coverage --- scripts/classifier_adapters.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/classifier_adapters.py b/scripts/classifier_adapters.py index cf59a15..778e1d4 100644 --- a/scripts/classifier_adapters.py +++ b/scripts/classifier_adapters.py @@ -9,6 +9,16 @@ import abc from collections import defaultdict from typing import Any +__all__ = [ + "LABELS", + "LABEL_DESCRIPTIONS", + "compute_metrics", + "ClassifierAdapter", + "ZeroShotAdapter", + "GLiClassAdapter", + "RerankerAdapter", +] + LABELS: list[str] = [ "interview_scheduled", "offer_received",