action posthog_retrieve_session_summaries_config { label: "retrieve_session_summaries_config" description: "Retrieve the team's session summaries configuration (product context used to tailor single-session replay summaries)." provider: posthog method: GET path: "/api/projects/{project_id}/session_summaries/config/" encoding: json output: { type: "object" properties: { custom_tags: { type: "object" description: "Team-defined tags layered on top of the fixed taxonomy, as a {name: description} map. Names must be lowercase snake_case (max 60 chars), descriptions max 200 chars, max 15 entries." } product_context: { type: "string" description: "Free-form description of the team's product, used to tailor AI-generated single-session replay summaries. Injected into the system prompt of every summary generated for this team via the replay page." } } } }