RICS / app /tests /test_baseline_defaults.py
StormShadow308's picture
Default report generation to standard RAG/LLM on e561e67 baseline with /health verification.
5f70643
Raw
History Blame Contribute Delete
624 Bytes
"""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"