From dc801c07cf38b0c495686463e6ca6f871a64440e Mon Sep 17 00:00:00 2001 From: YurenHao0426 Date: Tue, 27 Jan 2026 09:57:37 -0600 Subject: Add collaborativeagents module and update gitignore - Add collaborativeagents subproject with adapters, agents, and evaluation modules - Update .gitignore to exclude large binary files (.whl, .tar), wandb logs, and results Co-Authored-By: Claude Opus 4.5 --- collaborativeagents/evaluation/__init__.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 collaborativeagents/evaluation/__init__.py (limited to 'collaborativeagents/evaluation/__init__.py') 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", +] -- cgit v1.2.3