Review Sales Calls for Sentiment Analysis

View Markdown

Use ittybit's custom prompt task to review your sales calls and generate a report with sentiment analysis.


Create a Custom Prompt Task

const prompt = "Analyze this sales video and generate a report. The output must be a structured JSON object with the following keys: `rep_sentiment`: (Positive, Neutral, or Negative), `prospect_sentiment`: (Positive, Neutral, or Negative), `summary` (string), `actionable_coaching_points` (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