Skip to main content
Meetings let clinicians (or other users) capture non-patient conversations and have TORTUS generate meeting notes. The flow mirrors consultations: start a meeting, let TORTUS process it, and handle the meeting:completed event.
Meeting mode is in early access and not yet available to all users and partners. To request access, contact your TORTUS Account Manager or support@tortus.ai.

Starting a meeting

Live recording meetingCapture audio in the embedded app, the same flow a clinician sees in the standalone TORTUS meeting view.
Update the notes mid-flight, for example as the user types into your host UI:

Handling completion

When the user clicks Finish meeting in the embedded view, the SDK emits meeting:completed with the generated note in both Markdown and HTML, plus the transcription as plain text. As with consultations, you must call finish() to acknowledge receipt.

Hosting your own meetings UI

To manage the meetings list and the start/finish flow in your own host UI, set disableFinishMeetingButton: true when calling loadTortus(...):
When the flag is set:
  • The embedded meeting view does not render the post-generation Finish meeting button.
  • The SDK does not emit meeting:completed; your host drives completion through your own UI.
  • The bundled meetings list / Start new meeting surface is shown so users can navigate between meetings without your host intervening.
The returned TortusMeeting also exposes setAudio?(audio) and close() for mid-flight updates and teardown. See the API reference.