Text transcript of a given session.

Example Usage

import { SessionTranscriptionResponse } from "syllable-sdk/models/components";

let value: SessionTranscriptionResponse = {
  sessionId: "<id>",
  transcription: [
    {
      timestamp: new Date("2024-08-11T11:13:21.434Z"),
      lang: "en-US",
      source: "user",
    },
  ],
  actions: [
    {
      timestamp: new Date("2024-03-20T06:56:48.204Z"),
    },
  ],
};

Fields

FieldTypeRequiredDescription
sessionIdstringTRUEInternal ID of the session
transcriptioncomponents.SessionText[]TRUETranscriptions of all messages in the session
actionscomponents.SessionAction[]TRUETool invocations that occurred during the session