Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.medera.info/llms.txt

Use this file to discover all available pages before exploring further.

async with client.streams.open(session_id=session_id) as stream:
    async for event in stream:
        if event.type == "transcript.final":
            print(event.text)