# Summarize Meeting and Create Action Items [View original](https://ittybit.com/guides/summarize-meeting-and-create-action-items) ## Create a Custom Prompt Task ```js const prompt = "Analyze this meeting video and generate a report. The output must be a structured JSON object with the following keys: `summary`: (string), `key_decisions`: (list of strings), `action_items` (list of strings)"; const task = await ittybit.tasks.create({ url: 'https://example.com/video.mp4', kind: 'prompt', prompt: prompt, }); ``` ```python prompt = "Analyze this meeting video and generate a report. The output must be a structured JSON object with the following keys: `summary`: (string), `key_decisions`: (list of strings), `action_items` (list of strings)" task = ittybit.tasks.create( url='https://example.com/video.mp4', kind='prompt', prompt=prompt, ); ``` ```ruby prompt = "Analyze this meeting video and generate a report. The output must be a structured JSON object with the following keys: `summary`: (string), `key_decisions`: (list of strings), `action_items` (list of strings)" task = ittybit.tasks.create( url: 'https://example.com/video.mp4', kind: 'prompt', prompt: prompt, ); ``` ```php $prompt = "Analyze this meeting video and generate a report. The output must be a structured JSON object with the following keys: `summary`: (string), `key_decisions`: (list of strings), `action_items` (list of strings)"; $task = $ittybit->tasks->create([ 'url' => 'https://example.com/video.mp4', 'kind' => 'prompt', 'prompt' => $prompt, ]); ``` ```go prompt := "Analyze this meeting video and generate a report. The output must be a structured JSON object with the following keys: `summary`: (string), `key_decisions`: (list of strings), `action_items` (list of strings)" task, err := ittybit.Tasks.Create( context.TODO(), &ittybit.TaskCreateParams{ Kind: "prompt", Prompt: prompt, URL: "https://example.com/video.mp4" }, ) ``` ```js const prompt = "Analyze this meeting video and generate a report. The output must be a structured JSON object with the following keys: `summary`: (string), `key_decisions`: (list of strings), `action_items` (list of strings)" const task = await fetch('https://api.ittybit.com/tasks', { method: 'POST', headers: { 'Authorization': `Bearer ${ITTYBIT_API_KEY}` }, body: JSON.stringify({ url: 'https://example.com/video.mp4', kind: 'prompt', prompt: prompt, }) }) ``` *** See the [Prompt Tasks](/docs/prompt) section for more information about available options. *** *(See [SDKs](/sdks) for install and initialization steps.)*