Note Generation

Once an ambient session is submitted, the Suki Platform begins generating a note asynchronously in the background. In online mode, the system processes audio data in real time as the conversation happens, resulting in faster note generation. In offline mode,the system processes the entire audio file after recording has completed and synced to the server, which may increase generation time depending on conversation length. Read more about offline mode. Generated notes are securely stored in the Suki system and are only accessible via the SDK UI.

Note Submission & Retrieval

Upon verifying the note contents, provider can digitally sign and submit the note to the Suki system. Once submitted, the note is stored securely and can be retrieved later from the SDK UI. The notes contents are posted back to the EHR in two ways, onNoteSubmit prop to SukiAssistant component and note-submission:success event subscribed to via on method of useSuki hook.

const unsubscribeNoteSubmission = sdkClient.on("note-submission:success", (contents) => {
  console.log("Note submitted successfully:", contents);
});