Skip to main content

Overview

You can embed the Suki Assistant in your web application by using an iframe. For the SDK to function correctly, you must grant the iframe specific permissions to access the microphone and clipboard.

Granting Required Permissions

  • Microphone access is required for ambient note capture and dictation.
  • Clipboard access is required for the copy-to-clipboard functionality in note sections.
To enable these features, add the allow attribute to your <iframe> element with the necessary permission values.
Modern browsers restrict access to sensitive APIs like the microphone from within an iframe for security reasons. If you do not explicitly grant permission, core SDK features will fail.
<iframe
  src="https://your-app-url.com"
  allow="microphone; clipboard-write; clipboard-read"
>
  <!-- Your application with the Suki SDK is rendered here -->
</iframe>

Next Steps

Read the Advanced Configuration example to learn how to configure the Suki SDK.