Summarize Meeting and Create Action Items

View Markdown

Use ittybit's custom prompt task to summarize your meeting recordings and create action items based on the discussion.


Create a Custom Prompt Task

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,
});

See the Prompt Tasks section for more information about available options.


(See SDKs for install and initialization steps.)

On this page