Enhancements
- Enhanced visit context: Added support for visit-related metadata parameters in the
setSessionContextmethod, including visit type, encounter type, provider role, reason for visit, and chief complaint. These parameters provide additional context to improve note generation accuracy and clinical relevance.
API Changes
- Extended
setSessionContextmethod to accept new optional visit context parameters:visit_type: Enum values include “New Patient / Intake”, “Established patient”, “Wellness”, “ED”encounter_type: Enum values include “ambulatory”, “inpatient”, “ED”provider_role: Enum values include “Primary/Attending”, “Consulting”reason_for_visit: String parameter with a maximum of 255 characterschief_complaint: String parameter with a maximum of 255 characters
- All new parameters are optional; existing flows continue to work without these parameters
- Free text fields (
reason_for_visitandchief_complaint) enforce a 255-character limit
New Features
-
User feedback collection: Added
submitFeedback(_:for:onCompletion:)method to collect user feedback on AI-generated content, helping you gather insights on note quality and user satisfaction. -
Audio buffer monitoring: Added
audioBufferFilled(withPercentage: Double)case to the session delegate to notify you when the audio buffer reaches a certain fill percentage. This helps you display connection status indicators in your UI.
Enhancements
- Improved offline handling: Offline mode now includes a 15-second buffer to handle temporary connection problems. This gives you more time to show connection status notifications in your UI before the session fully transitions to offline mode.
- Enhanced getting started guide: Improved the getting started guide with a workflow diagram to help you understand the process of using the Suki Mobile SDK.
New Features
- Personalization preferences: Added
setPersonalizationPreferences(_:completionHandler:)method to configure clinical note generation preferences. Customize verbosity levels and note section styles to match your clinical documentation needs.
Enhancements
- Note customization options: Configure verbosity levels (concise, balanced, detailed) and note section styles (narrative or bulleted) for supported LOINC sections including History of Present Illness, Assessment, Plan, and Assessment & Plan.
API Changes
- New
setPersonalizationPreferences(_:completionHandler:)method for configuring note generation preferences - Preferences are persisted and automatically applied to all future note generations
New Features
-
Diagnosis context support: Added
SukiAmbientConstant.kDiagnosisInfoparameter tosetSessionContextfor structured diagnosis context, improving note accuracy by providing relevant diagnosis information. -
Structured data retrieval: Introduced
getStructuredData(for:onCompletion:)method to retrieve structured output data and diagnoses from completed sessions, enabling better integration with EHR systems.
API Changes
- Extended
setSessionContextwith diagnosis information support - New
getStructuredDatamethod for accessing structured session output - Supports ICD-10, IMO, and SNOMED code types
New Features
- Session context method: Introduced
setSessionContext(with:onCompletion:)method for setting patient, provider context, and LOINC codes after session creation, providing more flexibility in when you provide context information.
Enhancements
-
Improved session workflow: Separated patient, provider, and section context from
createSessionto a dedicatedsetSessionContextmethod, making the session creation process more streamlined. - Enhanced LOINC integration: Enhanced section generation using LOINC codes with automatic clinical section creation. LOINC codes alone are sufficient—the SDK automatically generates appropriate clinical sections.
API Changes
createSessionmethod now focuses solely on session initialization- Patient, provider, and section context should be set using
setSessionContext - LOINC codes alone are sufficient—SDK automatically generates appropriate clinical sections
New Features
- Audio buffering: Implemented audio buffering to reduce the number of offline sessions caused by brief internet interruptions, improving session continuity during temporary network issues.
-
Multilingual support: Added
SukiAmbientConstant.kMultilingualparameter to session creation for multilingual processing support, enabling accurate note generation for conversations in multiple languages.
Enhancements
- Background recording handling: Added proper error handling when attempting to start recording while the app is backgrounded, providing clearer error messages and preventing unexpected behavior.
Bug Fixes
- Fixed “No record exist for offline upload” failure category identified through note failure tracing dashboard
- Improved session recovery reliability during network transitions