PostTranscriptionConfig

Configuration for post-meeting transcription processing.

Post-transcription runs after the meeting ends to produce a more accurate transcription and optional summary.

Code Example:


SummaryConfig summary = new SummaryConfig(
    true,                     // enabled
    "Summarize action items"  // prompt
);
PostTranscriptionConfig postConfig = new PostTranscriptionConfig(
    true,            // enabled
    summary,         // summary config
    "whisper-large"  // model ID
);

See also

Constructors

Link copied to clipboard
constructor(enabled: Boolean, summary: SummaryConfig, modelId: String)
Creates a new post-transcription configuration.