## Generate summary of Transcripts for the session `realtime_kit.sessions.generate_summary_of_transcripts(strsession_id, SessionGenerateSummaryOfTranscriptsParams**kwargs) -> SessionGenerateSummaryOfTranscriptsResponse` **post** `/accounts/{account_id}/realtime/kit/{app_id}/sessions/{session_id}/summary` Trigger Summary generation of Transcripts for the session ID. ### Parameters - `account_id: str` The account identifier tag. - `app_id: str` The app identifier tag. - `session_id: str` ### Returns - `class SessionGenerateSummaryOfTranscriptsResponse: …` - `data: Optional[Data]` - `session_id: Optional[str]` - `status: Optional[str]` - `success: Optional[bool]` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) response = client.realtime_kit.sessions.generate_summary_of_transcripts( session_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", account_id="023e105f4ecef8ad9ca31a8372d0c353", app_id="app_id", ) print(response.data) ``` #### Response ```json { "data": { "session_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", "status": "status" }, "success": true } ```