11 lines
265 B
Python
11 lines
265 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from pathlib import Path
|
|
|
|
|
|
@dataclass(slots=True, frozen=True)
|
|
class DocsEvalConfig:
|
|
golden_cases_path: Path = Path("tests/golden/docs_qa/cases.yaml")
|
|
pipeline_mode: str = "pre_llm_only"
|