From ea0f79fac0af1b024087b9cb5b4de8bf9629240f Mon Sep 17 00:00:00 2001 From: Michael Chihlas Date: Fri, 13 Feb 2026 12:53:19 -0500 Subject: [PATCH] feat: add include_summary and detail_level to SessionExport schema Co-Authored-By: Claude Opus 4.6 --- backend/app/schemas/session.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/app/schemas/session.py b/backend/app/schemas/session.py index 76a2399a..83c2a550 100644 --- a/backend/app/schemas/session.py +++ b/backend/app/schemas/session.py @@ -89,6 +89,9 @@ class SessionExport(BaseModel): include_outcome_notes: bool = True include_next_steps: bool = True max_step_index: Optional[int] = Field(None, ge=1, description="1-based inclusive step cutoff") + # Phase B + include_summary: bool = False + detail_level: Literal["standard", "full"] = "standard" class SessionComplete(BaseModel):