Skip to main content

Digest

This endpoint is used to generate clinical notes from a transcript object. The API call is a POST request to

v1/scribe/user/digest or v1/scribe/server/digest

You can check out the API documentation at Digest

Input

The Digest API call requires a digest_request object which consists of the following parameters:

ParameterValuesDescription
transcript (required)Transcript object (see outputs for description)The transcript object to be digested.
output_objects (required)Output Objects (string) or Array of Output Objects (any) (Output Objects)Output to be returned from the API (one or both of transcript/note)
one of: "transcript", "note", ["transcript", "note"]
language (required)string (Language) Enum: "en-US" "fr-CA"Language of consultation
note_template (required)string (Note Template) Enum: "soap" "consult"Clinical note template to use (e.g. soap, consult)
style (required)string (Style) Enum: "paragraph" "bullet" "auto"Formatting style to use for each section in the clinical note
note_gen_mode (required)string (Note Gen Mode) Enum: "fast" "medium" "best"Quality of note generation

Output

The API returns a ScribeResponse object which consists of the following parameters: transcript and/or note or both. See scribe-outputs for more details.