Configuration for evaluation prompts and scoring criteria.
| 69 | |
| 70 | @dataclass |
| 71 | class EvaluationConfig: |
| 72 | """Configuration for evaluation prompts and scoring criteria.""" |
| 73 | PROMPT_TEMPLATES: Dict[str, str] = field(default_factory=get_default_prompt_templates) |
| 74 | QUESTION_POOL: Dict[str, Optional[List[str]]] = field(default_factory=get_default_question_pool) |
| 75 | |
| 76 | |
| 77 | class ResultsPrinter: |