Skip to main content
Quick summary
allows you to customize how Suki generates clinical notes based on each provider’s preferences. Control how much detail (short and concise, balanced, or very detailed) and how it’s formatted (continuous paragraphs or bullet points).
Personalization is supported by: APIs, Web SDK, Mobile SDK
Personalization allows you to help providers customize how Suki generates their clinical notes. Every provider has different preferences, some want short bullet points, others want detailed paragraphs. Personalization ensures each provider gets notes that match their style. When you use personalization, you can customize two aspects of note generation:
  • How much detail: Short and concise, balanced, or very detailed notes
  • How it’s formatted: Continuous paragraphs (narrative) or bullet points
Once you set a provider’s preferences, Suki automatically applies them to all future notes for that provider. You set it once, and Suki remembers, no need to send preferences with every request. Using personalization, you get the following benefits:
  • Provider satisfaction: Notes match each provider’s preferred style and level of detail
  • Consistent documentation: Once set, preferences apply automatically to all future notes
  • Efficiency: Providers don’t need to manually adjust notes; they’re generated according to their preferences
  • Flexibility: Different providers can have different preferences based on their specialty and workflow
  • Better adoption: When notes match provider preferences, they’re more likely to use and trust the system

How Personalization improves clinical documentation

Personalization reduces post-generation editing by aligning note style with how each provider already documents. This helps clinicians trust the generated notes and reduces the need for manual edits before signing. When notes match provider preference, clinicians usually make fewer style edits before sign. That improves trust and adoption, and it shortens the path from generated note to final documentation.

How Personalization works

Settings are saved at the user level (not per session) and applied to all future note generation for that provider. The process:
  1. Set preferences: Use the Mobile SDK setPersonalizationPreferences method or the User Preferences API to configure a provider’s preferences
  2. Automatic application: Suki applies these settings to all future notes for that provider
  3. Update anytime: Update preferences at any time; the most recent settings always take effect
Settings are persistent and user-specific. You don’t need to send preferences with every session request.

How to set Personalization preferences

Personalization is saved for the provider, not for one ambient session. Set preferences before the visit starts. Suki uses the latest saved values for that provider’s future notes. Click the tabs below to see the implementation details for your integration path.
Save preferences with the User Preferences API. Send a PATCH to /api/v1/user/preferences and set sdp_provider_id to the provider whose note style you want to change.

Identify the Provider

Use that provider’s Suki token and provider ID. Preferences are user-specific, so use the correct sdp_provider_id for each clinician.

Choose Verbosity and Section Style

Set verbosity to CONCISE, BALANCED, or DETAILED. Optionally set section format to NARRATIVE or BULLETED for supported LOINC sections: History of Present Illness (10164-2), Assessment and Plan (51847-2), Assessment (51848-0), and Plan (18776-5).

Update Preferences

This is a PATCH request, so send only the fields you want to change. You can update verbosity, section format, or both.
Python
Refer to User Preferences for the full request and response schema.

Run Ambient Sessions for That Provider

After the update succeeds, create ambient sessions as usual for the same provider. You do not send personalization fields in session context. Suki applies the saved preferences when it generates the note.

Update Preferences When Needed

When a provider changes their preferred style, call the same PATCH endpoint again before the next visit. The most recent values apply to future notes.

Personalization options

With Personalization, you can customize two aspects of note generation: verbosity and section style.

Verbosity

Verbosity controls how much detail is included in the generated note. This setting applies to all note sections.
string
default:"BALANCED"
Applies to: All note sections

Section style

Section style lets you control the formatting style for specific clinical sections. Set different styles for different sections as needed.
array
Applies to:
  • History of Present Illness (10164-2)
  • Assessment and Plan (51847-2)
  • Assessment (51848-0)
  • Plan (18776-5)
Example:
JSON

Best practices

  • Set defaults early: Configure preferences when providers are first registered in your system
  • Offer a UI: Let providers choose their preferences through your application’s settings page
  • Explain options: Help providers understand the difference between verbosity levels and style options
  • Update when requested: Make it easy for providers to change their preferences as their needs evolve
  • Test with real notes: Verify that preferences produce notes that match provider expectations

User Preferences API

Set and update personalization preferences for providers
Last modified on July 24, 2026