Files
calendar/packages/features/tasker/tasks/executeAIPhoneCall.ts
T
d4bff9d6b1 feat: Cal.ai Self Serve #2 (#22995)
* feat: Cal.ai Self Serve #2

* chore: fix import and remove logs

* fix: update checkout session

* fix: type errors and test

* fix: imports

* fix: type err

* fix: type error

* fix: tests

* chore: save progress

* fix: workflow flow

* fix: workflow update bug

* tests: add unit tests for retell ai webhoo

* fix: status code

* fix: test and delete bug

* fix: add dynamic variables

* fix: type err

* chore: update unit test

* fix: type error

* chore: update default prompt

* fix: type errors

* fix: workflow permissions

* fix: workflow page

* fix: translations

* feat: add call duration

* chore: add booking uid

* fix: button positioning

* chore: update tests

* chore: improvements

* chore: some more improvements

* refactor: improvements

* refactor: code feedback

* refactor: improvements

* feat: enable credits for orgs (#23077)

* Show credits UI for orgs

* fix stripe callback url when buying credits

* give orgs 20% credits

* add test for calulating credits

---------

Co-authored-by: CarinaWolli <wollencarina@gmail.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>

* fix: types

* fix: types

* chore: error

* fix: type error

* fix: type error

* chore: mock env

* feat: add idempotency key to prevent double charging

* chore: add userId and teamId

* fix: skip inbound calls

* chore: update tests

* feat: add feature flag for voice agent

* feat: finish test call and other improvements

* chore: add alert

* chore: update .env.example

* chore: improvements

* fix: update tests

* refactor: remove un necessary

* feat: add setup badge

* chore: improvements

* fix: use referene id

* chore: improvements

* fix: type error

* fix: type

* refactor: change pricing logic

* refactor: update tests

* fix: conflicts

* fix: billing link for orgs

* fix: types

* refactor: move feature flag up

* fix: alert and test call credit check

* fix: update unit tests

* fix: feedback

* refactor: improvements

* refactor: move handlers to separate files

* fix: types

* fix: missing import

* fix: type

* refactor: change general tools functions handling

* refactor: use repository

* refactor: improvements

* fix: types

* fix: type errorr

* fix: auth check

* feat: add creditFor

* fix: update defualt prompt

* fix: throw error on frontend

* fix: update unit tests

* fix: use deleteAllWorkflowReminders

* refactor: add connect phone number

* refactor: improvements

* chore: translation

* chore: update message

* chore: translation

* design improvements buy number dialog

* add translation for error message

* use translation key in error message

* refactor: improve connect phone number tab

* feat: support un saved workflow to tests

* chore: remove un used

* fix: remove un used

* fix: remove un used

* refactor: similify billing

---------

Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com>
Co-authored-by: CarinaWolli <wollencarina@gmail.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2025-08-29 05:04:05 +01:00

247 lines
7.9 KiB
TypeScript

import dayjs from "@calcom/dayjs";
import { getCalEventResponses } from "@calcom/features/bookings/lib/getCalEventResponses";
import { createDefaultAIPhoneServiceProvider } from "@calcom/features/calAIPhone";
import { FeaturesRepository } from "@calcom/features/flags/features.repository";
import { checkRateLimitAndThrowError } from "@calcom/lib/checkRateLimitAndThrowError";
import logger from "@calcom/lib/logger";
import prisma from "@calcom/prisma";
interface ExecuteAIPhoneCallPayload {
workflowReminderId: number;
agentId: string;
fromNumber: string;
toNumber: string;
bookingUid: string;
userId: number | null;
teamId: number | null;
providerAgentId: string;
}
const log = logger.getSubLogger({ prefix: [`[[executeAIPhoneCall] `] });
export async function executeAIPhoneCall(payload: string) {
let data: ExecuteAIPhoneCallPayload;
try {
data = JSON.parse(payload);
} catch (error) {
log.error("Failed to parse AI phone call payload", { error, payload });
throw new Error("Invalid JSON payload");
}
const featuresRepository = new FeaturesRepository(prisma);
const calAIVoiceAgents = await featuresRepository.checkIfFeatureIsEnabledGlobally("cal-ai-voice-agents");
if (!calAIVoiceAgents) {
log.warn("Cal AI voice agents are disabled - skipping AI phone call");
return;
}
log.info(`Executing AI phone call for workflow reminder ${data.workflowReminderId}`, data);
try {
// Check if the workflow reminder still exists and is scheduled
const workflowReminder = await prisma.workflowReminder.findUnique({
where: { id: data.workflowReminderId },
select: {
id: true,
scheduled: true,
referenceId: true,
workflowStep: {
select: {
agent: {
select: {
outboundPhoneNumbers: {
select: {
phoneNumber: true,
},
},
},
},
},
},
booking: {
select: {
uid: true,
startTime: true,
endTime: true,
eventTypeId: true,
responses: true,
location: true,
description: true,
attendees: {
select: {
name: true,
email: true,
phoneNumber: true,
timeZone: true,
},
},
eventType: {
select: {
title: true,
bookingFields: true,
},
},
user: {
select: {
name: true,
timeZone: true,
},
},
},
},
},
});
if (!workflowReminder || !workflowReminder.scheduled) {
log.warn(`Workflow reminder ${data.workflowReminderId} not found or not scheduled`);
throw new Error("Reminder not found or not scheduled");
}
if (data.userId || data.teamId) {
const { CreditService } = await import("@calcom/features/ee/billing/credit-service");
const creditService = new CreditService();
const hasCredits = await creditService.hasAvailableCredits({
userId: data.userId || undefined,
teamId: data.teamId || undefined,
});
if (!hasCredits) {
log.warn(`Insufficient credits for AI phone call`, {
userId: data.userId,
teamId: data.teamId,
workflowReminderId: data.workflowReminderId,
bookingUid: workflowReminder.booking?.uid,
});
throw new Error(
`Insufficient credits to make AI phone call. Please purchase more credits. user: ${data?.userId}, team: ${data?.teamId}`
);
}
}
const rateLimitIdentifier = data.teamId
? `ai-phone-call:team:${data.teamId}`
: data.userId
? `ai-phone-call:user:${data.userId}`
: null;
if (!rateLimitIdentifier) {
log.warn(`No rate limit identifier found for AI phone call. This should not happen.`, {
userId: data.userId,
teamId: data.teamId,
workflowReminderId: data.workflowReminderId,
});
throw new Error("No rate limit identifier found for AI phone call. This should not happen.");
}
// TODO: add better rate limiting for AI phone calls
if (rateLimitIdentifier) {
await checkRateLimitAndThrowError({
rateLimitingType: "core",
identifier: rateLimitIdentifier,
});
}
const booking = workflowReminder.booking;
if (!booking) {
log.warn(`No booking found for workflow reminder ${data.workflowReminderId}`);
throw new Error("No booking found");
}
const numberToCall = data.toNumber;
if (!numberToCall) {
log.warn(`No phone number found for attendee in booking ${booking.uid}`);
throw new Error("No phone number found for attendee");
}
const attendee = booking.attendees[0];
const timeZone = booking.user?.timeZone || attendee?.timeZone || "UTC";
const { responses } = getCalEventResponses({
bookingFields: booking.eventType?.bookingFields ?? null,
booking: {
...booking,
customInputs: null,
},
});
const attendeeNameWords = attendee?.name?.trim().split(" ") || [];
const attendeeNameWordCount = attendeeNameWords.length;
const attendeeFirstName = attendeeNameWords[0] || "";
const attendeeLastName = attendeeNameWordCount > 1 ? attendeeNameWords[attendeeNameWordCount - 1] : "";
const dynamicVariables = {
EVENT_NAME: booking.eventType?.title || "",
EVENT_DATE: dayjs(booking.startTime).tz(timeZone).format("dddd, MMMM D, YYYY"),
EVENT_TIME: dayjs(booking.startTime).tz(timeZone).format("h:mm A"),
EVENT_END_TIME: dayjs(booking.endTime).tz(timeZone).format("h:mm A"),
TIMEZONE: timeZone,
LOCATION: booking.location || "",
ORGANIZER_NAME: booking.user?.name || "",
ATTENDEE_NAME: attendee?.name || "",
ATTENDEE_FIRST_NAME: attendeeFirstName,
ATTENDEE_LAST_NAME: attendeeLastName,
ATTENDEE_EMAIL: attendee?.email || "",
ATTENDEE_TIMEZONE: attendee?.timeZone || "",
ADDITIONAL_NOTES: booking.description || "",
EVENT_START_TIME_IN_ATTENDEE_TIMEZONE: dayjs(booking.startTime)
.tz(attendee?.timeZone || timeZone)
.format("h:mm A"),
EVENT_END_TIME_IN_ATTENDEE_TIMEZONE: dayjs(booking.endTime)
.tz(attendee?.timeZone || timeZone)
.format("h:mm A"),
// DO NOT REMOVE THIS FIELD. It is used for conditional tool routing in prompts
eventTypeId: booking.eventTypeId?.toString() || "",
// Include any custom form responses
...Object.fromEntries(
Object.entries(responses || {}).map(([key, value]) => [
key
.replace(/[^a-zA-Z0-9 ]/g, "")
.trim()
.replaceAll(" ", "_")
.toUpperCase(),
value.value?.toString() || "",
])
),
};
const aiService = createDefaultAIPhoneServiceProvider();
await aiService.updateToolsFromAgentId(data.providerAgentId, {
eventTypeId: booking.eventTypeId,
timeZone: attendee?.timeZone ?? "Europe/London",
userId: data.userId,
teamId: data.teamId,
});
const call = await aiService.createPhoneCall({
fromNumber: data.fromNumber,
toNumber: numberToCall,
dynamicVariables,
});
log.info("AI phone call created successfully:", call);
// Update the workflow reminder with the call reference
await prisma.workflowReminder.update({
where: { id: data.workflowReminderId },
data: {
referenceId: call.call_id,
scheduled: true,
},
});
log.info(`AI phone call executed successfully for workflow reminder ${data.workflowReminderId}`, {
callId: call.call_id,
agentId: data.agentId,
fromNumber: data.fromNumber,
toNumber: numberToCall,
bookingUid: data.bookingUid,
});
} catch (error) {
log.error("Error executing AI phone call:", error);
throw error;
}
}