Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion joinly/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async def _handle_unsubscribe_resource(url: AnyUrl) -> None:
async def get_transcript(ctx: Context) -> Transcript:
"""Get the live transcript of the meeting."""
ms: MeetingSession = ctx.request_context.lifespan_context.meeting_session
return ms.transcript.with_role(SpeakerRole.participant).compact()
return ms.transcript.with_role(SpeakerRole.participant)


@mcp.tool(
Expand Down