playreel/backend/tests/run_playreel_after_gate1.sh

24 lines
884 B
Bash
Executable File

#!/usr/bin/env bash
# Playreel 롱컷 — 게이트 ① 승인 뒤, 게이트 ②(analysis_confirm) 직전까지.
# 사용: tests/run_playreel_after_gate1.sh <goods_id>
set -euo pipefail
cd "$(dirname "$0")/.."
goods_id="${1:?사용: $0 <goods_id>}"
run() { echo; echo "── $1 ──"; shift; uv run python -m "$@"; }
run "③ upscale" tests.playreel.test_upscale_poster "$goods_id"
run "④ analyze" tests.playreel.test_analyze_poster "$goods_id"
cat <<EOF
══ 게이트 ② analysis_confirm — 사람이 정해야 이어진다 ══
확인할 것
analysis.json movable 을 켜고 끈다. 여기 승인이 i2v 지출을 확정한다
review_grid.jpg 격자로 요소 위치를 지목한다
ip_risk 켜져 있으면 생성 모델이 거부할 수 있다
⑤ motion 이후는 아직 서비스가 없다 (⑥ narration · ⑩ hybrid · ⑪ compose).
EOF