Spaces:
Runtime error
Runtime error
File size: 624 Bytes
5f70643 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """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"
|