summarize_transcript
Generate concise summaries from video transcripts for LinkedIn posts. Customize tone, audience, and word count to match your professional messaging needs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
audience | No | Target audience for the summary | general |
tone | No | Tone of the summary | professional |
transcript | Yes | Video transcript text | |
wordCount | No | Approximate word count for the summary |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"audience": {
"default": "general",
"description": "Target audience for the summary",
"enum": [
"general",
"technical",
"business",
"academic"
],
"type": "string"
},
"tone": {
"default": "professional",
"description": "Tone of the summary",
"enum": [
"educational",
"inspirational",
"professional",
"conversational"
],
"type": "string"
},
"transcript": {
"description": "Video transcript text",
"type": "string"
},
"wordCount": {
"default": 200,
"description": "Approximate word count for the summary",
"maximum": 300,
"minimum": 100,
"type": "number"
}
},
"required": [
"transcript"
],
"type": "object"
}