SummaryConfig

Configuration for generating an AI summary from a transcription.

Code Example:


SummaryConfig summary = new SummaryConfig(
    true,                                        // enabled
    "Summarize key decisions and action items"    // prompt
);
TranscriptionConfig config = new TranscriptionConfig(
    "https://example.com/webhook", // webhook URL
    summary                        // summary config
);

See also

Constructors

Link copied to clipboard
constructor(enabled: Boolean, prompt: String)
Creates a new summary configuration.