summaryrefslogtreecommitdiff
path: root/collaborativeagents/evaluation/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'collaborativeagents/evaluation/__init__.py')
-rw-r--r--collaborativeagents/evaluation/__init__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/collaborativeagents/evaluation/__init__.py b/collaborativeagents/evaluation/__init__.py
new file mode 100644
index 0000000..8bfb47e
--- /dev/null
+++ b/collaborativeagents/evaluation/__init__.py
@@ -0,0 +1,19 @@
+"""Evaluation module for personalization experiments."""
+
+from .llm_judge import (
+ LLMJudge,
+ BatchEvaluator,
+ JudgmentResult,
+ ConversationMetrics,
+ PreferenceViolationType,
+ analyze_user_effort,
+)
+
+__all__ = [
+ "LLMJudge",
+ "BatchEvaluator",
+ "JudgmentResult",
+ "ConversationMetrics",
+ "PreferenceViolationType",
+ "analyze_user_effort",
+]