@videosdk.live/js-sdk
Advanced tools
Comparing version 0.0.85 to 0.0.86
@@ -152,4 +152,18 @@ export class Meeting { | ||
* @param config.webhookUrl? Webhook URL which will be called by VideoSDK when the transcription state gets changed | ||
* @param config.modelConfig? modelConfig if any, which will be used while doing transcription | ||
* @param config.summary.enabled Enables or disables summary generation from realtime transcriptions. | ||
* @param config.summary.prompt Guides summary generation (optional). | ||
*/ | ||
startTranscription(config: object): void; | ||
startTranscription({ | ||
webhookUrl, | ||
modelConfig, | ||
summary, | ||
}: { | ||
webhookUrl?: string; | ||
modelConfig?: object; | ||
summary?: { | ||
enabled: boolean; | ||
prompt?: string; | ||
}; | ||
}): void; | ||
@@ -195,3 +209,3 @@ /** | ||
enabled: boolean; | ||
summary: { enabled: boolean; prompt: string | undefined }; | ||
summary?: { enabled: boolean; prompt?: string }; | ||
} | ||
@@ -198,0 +212,0 @@ ): void; |
{ | ||
"name": "@videosdk.live/js-sdk", | ||
"version": "0.0.85", | ||
"version": "0.0.86", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "prebuilt", |
Sorry, the diff of this file is too big to display
2123415
48411