Spaces:
Runtime error
Runtime error
| """Default generation stack matches standard-rag-llm baseline.""" | |
| from __future__ import annotations | |
| from app.config import settings | |
| from app.deployment_baseline import BASELINE_GIT_SHA, BASELINE_LABEL | |
| from app.services.generation import _pipeline_setting | |
| def test_baseline_constants() -> None: | |
| assert BASELINE_GIT_SHA == "e561e67" | |
| assert BASELINE_LABEL == "standard-rag-llm" | |
| def test_primary_generate_pipeline_default_is_standard() -> None: | |
| assert settings.primary_generate_pipeline == "standard" | |
| assert settings.agentic_inspector_when_notes_only is False | |
| assert _pipeline_setting() == "standard" | |