대시보드 폴드아웃/드릴다운 정리 + 페르소나 역린·misconduct 반응 + 게이트웨이 격리·RAG 비차단 수정

SSOT 대시보드:
- 한신대 기술분석 PDF(19쪽) 정합성 분석 + 이번 세션 발견 섹션 추가
- 섹션 폴드아웃(접기)·상단 목차(드릴다운)·모두 펼치기/접기 — 내용 보존, 레이아웃만 정리

페르소나 반응 강화('저항·반응 조절' 핵심 차별):
- PersonaCard.triggers(역린) 필드 + CCD 핵심상처 파생 역린 블록
- L0에 무례·모욕·조롱 시 현실적 동맹 균열 반응 지침

버그·성능 수정(라이브/E2E로 포착):
- 게이트웨이 페르소나 격리: --append-system-prompt를 --system-prompt(교체)로 + --exclude-dynamic-system-prompt-sections (내담자 캐릭터 붕괴·개발맥락 누출 차단)
- RAG: 임베더 동기 로드(약 7-13초)를 _warm_rag_caches 백그라운드 warm으로(세션 생성 블로킹 회귀 수정)
- voice TTS RMS 데드힌트 제거, init_state OpennessParams 파라미터객체화
- 한국어 PII(날짜·금액·주소) 마스킹 보강
- 레이아웃 시각 게이트: 폼 컨트롤 값 스크롤 오탐 제외(7/7)

검증: 백엔드 84/84, E2E 42(데스크톱 27·모바일 11·아바타 4), 시각 게이트 7/7
This commit is contained in:
Yun Chan 2026-06-27 02:30:46 +09:00
parent cb2aebd76c
commit 085460b5e0
327 changed files with 31226 additions and 1829 deletions

View file

@ -231,12 +231,22 @@ def evolve(
return advanced
@dataclass(frozen=True, slots=True)
class OpennessParams:
"""페르소나 파생 openness 곡선 파라미터 묶음(init_state 입력).
base_resistance/unlock_rate/decay_floor/ideation_baseline 4종을 객체로 호출부의
4-인자 분해(card.base_resistance() ) PersonaCard.openness_params() 일원화한다.
"""
base_resistance: float
unlock_rate: float
decay_floor: float
ideation_baseline: int = 1
def init_state(
*,
base_resistance: float,
unlock_rate: float,
decay_floor: float,
ideation_baseline: int = 1,
params: OpennessParams,
carry: Optional[dict] = None,
) -> SessionState:
"""회기 시작 상태 초기화 (memory.carry_over 결과 주입 가능).
@ -245,23 +255,25 @@ def init_state(
stage='라포' 재시작, rapport_credit ×0.7 이월, resistance drift, ideation 보수적 유지.
"""
stage = Stage.RAPPORT
resistance = base_resistance
resistance = params.base_resistance
rapport_credit = 0.0
ideation_stage = ideation_baseline
ideation_stage = params.ideation_baseline
if carry:
rapport_credit = float(carry.get("rapport_credit", 0.0)) * 0.7 # P2 이월
# inter-session drift: 라포가 쌓였으면 저항 소폭 완화된 채로 재시작
prev_resist = float(carry.get("resistance", base_resistance))
resistance = _clamp01((prev_resist + base_resistance) / 2.0)
ideation_stage = max(int(carry.get("ideation_stage", ideation_baseline)), ideation_baseline)
prev_resist = float(carry.get("resistance", params.base_resistance))
resistance = _clamp01((prev_resist + params.base_resistance) / 2.0)
ideation_stage = max(
int(carry.get("ideation_stage", params.ideation_baseline)), params.ideation_baseline
)
eff = compute_effective_openness(
stage=stage,
rapport_credit=rapport_credit,
resistance=resistance,
unlock_rate=unlock_rate,
decay_floor=decay_floor,
unlock_rate=params.unlock_rate,
decay_floor=params.decay_floor,
)
return SessionState(
stage=stage,
@ -280,6 +292,7 @@ __all__ = [
"STAGE_BASE_OPENNESS",
"STAGE_ORDER",
"SessionState",
"OpennessParams",
"estimate_rapport_signal",
"compute_effective_openness",
"next_stage",