action.summarize
Summarizes the conversation.
| Name | Type | Default | Description | 
|---|---|---|---|
| summarizeRequired | object | - | An object that contains the summarize parameters. | 
summarize Parameters
| Name | Type | Default | Description | 
|---|---|---|---|
| webhookOptional | string | - | The webhook URI to be called. Authentication can also be set in the url in the format of username:password@url. | 
| promptOptional | string | - | The prompt for summarization. | 
Object Example
- YAML
- JSON
live_transcribe:
  action:
    summarize:
      webhook: 'https://example.com/webhook'
      prompt: Summarize the key points of this conversation.
{
  "live_transcribe": {
    "action": {
      "summarize": {
        "webhook": "https://example.com/webhook",
        "prompt": "Summarize the key points of this conversation."
      }
    }
  }
}
Default Summarization
If the summarize action is called with a empty object, the default summarization prompt and webhook will be used.
- YAML
- JSON
live_transcribe:
  action:
    summarize: {}
{
  "live_transcribe": {
    "action": {
      "summarize": {}
    }
  }
}