@amigo-ai/platform-sdk 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -483,7 +483,13 @@ Build ambient clinical documentation tools. The SDK covers encounter review acti
|
|
|
483
483
|
```typescript
|
|
484
484
|
// Configure scribe settings
|
|
485
485
|
const settings = await client.settings.scribe.get()
|
|
486
|
-
await client.settings.scribe.update({
|
|
486
|
+
await client.settings.scribe.update({
|
|
487
|
+
enabled: true,
|
|
488
|
+
soap_style: 'detailed',
|
|
489
|
+
language: 'es',
|
|
490
|
+
keyterms: ['metformin', 'Ozempic', 'Dr. Ramirez'],
|
|
491
|
+
specialty: 'Primary care',
|
|
492
|
+
})
|
|
487
493
|
|
|
488
494
|
// Approve ICD-10 codes after physician review
|
|
489
495
|
await client.POST('/v1/{workspace_id}/scribe/encounters/{encounter_id}/icd10/approve', {
|
|
@@ -19941,12 +19941,22 @@ export interface components {
|
|
|
19941
19941
|
/** Authorized Clinicians */
|
|
19942
19942
|
authorized_clinicians?: components["schemas"]["ScribeClinician"][] | null;
|
|
19943
19943
|
cds?: components["schemas"]["ScribeCdsConfig"] | null;
|
|
19944
|
+
/** Custom Instructions */
|
|
19945
|
+
custom_instructions?: string | null;
|
|
19944
19946
|
/** Enabled */
|
|
19945
19947
|
enabled?: boolean | null;
|
|
19948
|
+
/** Keyterms */
|
|
19949
|
+
keyterms?: string[] | null;
|
|
19950
|
+
/** Language */
|
|
19951
|
+
language?: string | null;
|
|
19946
19952
|
post_encounter?: components["schemas"]["ScribePostEncounterConfig"] | null;
|
|
19947
19953
|
safety?: components["schemas"]["ScribeSafetyConfig"] | null;
|
|
19948
19954
|
/** Soap Style */
|
|
19949
19955
|
soap_style?: ("concise" | "detailed" | "structured") | null;
|
|
19956
|
+
/** Specialty */
|
|
19957
|
+
specialty?: string | null;
|
|
19958
|
+
/** Tools Enabled */
|
|
19959
|
+
tools_enabled?: string[] | null;
|
|
19950
19960
|
/** Voice Auth Enabled */
|
|
19951
19961
|
voice_auth_enabled?: boolean | null;
|
|
19952
19962
|
};
|
|
@@ -19955,8 +19965,17 @@ export interface components {
|
|
|
19955
19965
|
/** Authorized Clinicians */
|
|
19956
19966
|
authorized_clinicians: components["schemas"]["ScribeClinician"][];
|
|
19957
19967
|
cds?: components["schemas"]["ScribeCdsConfig"];
|
|
19968
|
+
/** Custom Instructions */
|
|
19969
|
+
custom_instructions?: string | null;
|
|
19958
19970
|
/** Enabled */
|
|
19959
19971
|
enabled: boolean;
|
|
19972
|
+
/** Keyterms */
|
|
19973
|
+
keyterms?: string[];
|
|
19974
|
+
/**
|
|
19975
|
+
* Language
|
|
19976
|
+
* @default en
|
|
19977
|
+
*/
|
|
19978
|
+
language?: string;
|
|
19960
19979
|
post_encounter?: components["schemas"]["ScribePostEncounterConfig"];
|
|
19961
19980
|
safety?: components["schemas"]["ScribeSafetyConfig"];
|
|
19962
19981
|
/**
|
|
@@ -19965,6 +19984,10 @@ export interface components {
|
|
|
19965
19984
|
* @enum {string}
|
|
19966
19985
|
*/
|
|
19967
19986
|
soap_style?: "concise" | "detailed" | "structured";
|
|
19987
|
+
/** Specialty */
|
|
19988
|
+
specialty?: string | null;
|
|
19989
|
+
/** Tools Enabled */
|
|
19990
|
+
tools_enabled?: string[] | null;
|
|
19968
19991
|
/**
|
|
19969
19992
|
* Voice Auth Enabled
|
|
19970
19993
|
* @default false
|