File size: 906 Bytes
881f9f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | """Sanity checks on the vendored AOB system prompt.
Catches silent edits: if anyone modifies AOB_SYSTEM_PROMPT without
bumping AOB_PROMPT_SHA (and re-vendoring from a new AOB commit), this
test fails.
"""
from __future__ import annotations
import hashlib
def test_aob_prompt_sha_matches_constant() -> None:
from scripts.aat_system_prompt import AOB_PROMPT_SHA, AOB_SYSTEM_PROMPT
actual = hashlib.sha1(AOB_SYSTEM_PROMPT.encode("utf-8")).hexdigest()[:7]
assert actual == AOB_PROMPT_SHA, (
f"AOB_SYSTEM_PROMPT has been edited without updating AOB_PROMPT_SHA. "
f"If intentional, resync from a new AOB commit and set AOB_PROMPT_SHA "
f"to {actual!r}."
)
def test_aob_prompt_nonempty() -> None:
from scripts.aat_system_prompt import AOB_SYSTEM_PROMPT
assert (
len(AOB_SYSTEM_PROMPT) > 100
), "AOB system prompt unexpectedly short; re-vendor"
|