generate_linkedin_post
Generate LinkedIn post drafts from YouTube video summaries, titles, and optional details like speaker names, hashtags, and tone. Ideal for creating editable, thought-provoking content with targeted calls-to-action.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hashtags | No | Relevant hashtags (optional) | |
includeCallToAction | No | Whether to include a call to action | |
speakerName | No | Name of the speaker in the video (optional) | |
summary | Yes | Summary of the video content | |
tone | No | Tone of the LinkedIn post | first-person |
videoTitle | Yes | Title of the YouTube video |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hashtags": {
"description": "Relevant hashtags (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"includeCallToAction": {
"default": true,
"description": "Whether to include a call to action",
"type": "boolean"
},
"speakerName": {
"description": "Name of the speaker in the video (optional)",
"type": "string"
},
"summary": {
"description": "Summary of the video content",
"type": "string"
},
"tone": {
"default": "first-person",
"description": "Tone of the LinkedIn post",
"enum": [
"first-person",
"third-person",
"thought-leader"
],
"type": "string"
},
"videoTitle": {
"description": "Title of the YouTube video",
"type": "string"
}
},
"required": [
"summary",
"videoTitle"
],
"type": "object"
}