Summary Config
class 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
);
Content copied to clipboard