Lead hardcore pair prompts with cast

This commit is contained in:
2026-06-28 09:48:57 +02:00
parent d1af43bad2
commit 5acda5227c
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -6718,6 +6718,12 @@ def smoke_krea_pov_penetration_route() -> None:
lower = prompt.lower()
_expect("metadata" in krea.get("method", ""), "POV penetration route did not use metadata")
_expect("viewer" in lower and "first-person" in lower, "POV penetration lost first-person wording")
cast_index = lower.find("adult woman")
viewer_index = lower.find("viewer")
_expect(
0 <= cast_index < viewer_index,
"POV hardcore prompt should establish the visible woman before viewer/action wording",
)
_expect("penetrates" in lower or "penetration" in lower, "POV penetration lost penetration action wording")
_expect("woman" in lower and "thigh" in lower, "POV penetration lost body-position anchors")
_expect("action geography" not in lower, "POV penetration leaked abstract action-geography wording")