Skip to main content
Suki’s SDK versioning policy is based on the semantic versioning standard. For example, in version 1.2.3, 1 is the major version, 2 is the minor version, and 3 is the patch version. When we release a new SDK version for new features or bug fixes, we increment one of these three version components depending on the type of change introduced.
v2.1.1
EnhancementsRemoved
Jan 2026

Enhancements

  • Multilingual capability: The Web SDK now supports multilingual capability by default. Patients and providers can speak in their preferred language; the SDK generates the clinical note in English. No configuration is required, and you do not need to contact Technical Support to enable this feature.
  • Optional patient fields: The birthDate and gender properties are now optional in the Patient type. You can omit these fields when creating patient objects if the information is not available, making it easier to integrate patient data from systems where this information may be missing.

Removed

  • AmbientOptions: The prefill.noteTypeIds property is no longer supported in the AmbientOptions type. You must use the sections property instead.
v2.1.0
New Features
Nov 2025

New Features

  • Telehealth audio capture: Capture audio directly from separate tabs from the same browser window hosting your telehealth session. This ensures accurate ambient clinical documentation during virtual visits via Zoom, Teams, and other telehealth platforms.
Telehealth
This feature is an opt-in setting and is disabled by default. To enable this feature, follow the steps in the Telehealth guide.
v2.0.4
Enhancements
Sep 2025

Enhancements

  • Enhanced event monitoring: Added 6 new authentication events and 5 new ambient session lifecycle events to the EmitterEvents type. These events provide granular visibility into login, registration, token refresh, and session state changes, helping you build better error handling and user feedback in your application.
  • Improved offline handling: Offline mode now includes a 15-second buffer to handle temporary connection problems. This gives you time to show connection status notifications in your UI before the session transitions to offline mode, improving the user experience during brief network interruptions.
  • User feedback collection: Collect user feedback on AI-generated content directly through the SDK. This helps you gather insights on note quality and user satisfaction.
v2.0.3
New FeaturesBug Fixes
June 2025

New Features

  • Bearer token authentication: Added support for Bearer token authentication by allowing you to pass providerId during SDK initialization. This provides more flexibility for authentication workflows.
main.js
import { initialize } from "@suki-sdk/js";

initialize({
  partnerId: "your-partner-id",
  partnerToken: "your-partner-token",
  providerId: "provider-id"
});
App.tsx
import { useSuki } from "@suki-sdk/react";

const { init } = useSuki();

useEffect(() => {
  init({
    partnerId: "your-partner-id",
    partnerToken: "your-partner-token",
    providerId: "provider-id"
  });
}, []);

Bug Fixes

  • Fixed incorrect isAmbientInProgress and isAmbientPaused flags in ambient:update events
  • Fixed activeAmbientId not resetting in the useSuki hook after a session is submitted or cancelled

Additional Changes

  • Removed insert script option from section editing in the note page
v2.0.2
New Features
May 2025

New Features

  • Problem-based charting support: Added support for problem-based charting (PBN) with LOINC codes. Use the isPBNSection property in your ambientOptions to enable problem-based note generation for specific sections.
{
  "ambientOptions": {
    "sections": [
      {
        "loinc": "10164-2", // History of Present Illness
        "isPBNSection": true
      }
    ]
  }
}
Read more about problem-based charting in the ambient guide.
v2.0.1
Enhancements
May 2025

Enhancements

  • Updated default UI options: Updated default values for uiOptions to match the latest UI configuration. Close button, start ambient button, dictation, copy, and insert script features are now enabled by default, while the create empty note button is disabled by default.
v2.0.0
Major Changes
April 2025

Major Changes

  • Automated user registration: Programmatically create organizations and users during SDK initialization, reducing manual setup and accelerating onboarding workflows.
  • LOINC code integration: Standardize note sections using LOINC codes, improving note quality, scalability, and integration consistency across healthcare systems.
  • Expanded theme customization: Enhanced theme options with additional properties for greater control over SDK appearance. Refer to the theming guide for examples and customization options.
v1.0.3
Bug Fixes
February 2025

Bug Fixes

  • Various bug fixes and stability improvements
v1.0.2
Bug Fixes
December 2024

Bug Fixes

  • Various bug fixes and stability improvements
v1.0.1
Bug Fixes
December 2024

Bug Fixes

  • Various bug fixes and stability improvements
v1.0.0
New Features
December 2024

New Features

  • Initial stable release: Enhanced user experience with visual improvements, faster note generation, and improved stability
v0.5.0
New Features
July 2024

New Features

  • Initial release: Clinical note creation by listening to provider-patient conversations
Last modified on February 24, 2026