Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/web/public/static/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -1717,6 +1717,8 @@
"event_duration_info": "The event duration",
"event_time_info": "The event start time",
"event_type_not_found": "EventType not Found",
"number_to_call_variable": "Number to call",
"number_to_call_info": "The phone number of the user you are calling",
"location_variable": "Location",
"location_info": "The location of the event",
"additional_notes_variable": "Additional notes",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ export class CallService {
ADDITIONAL_NOTES: "This is a test web call to verify the AI phone agent",
EVENT_START_TIME_IN_ATTENDEE_TIMEZONE: "2:00 PM",
EVENT_END_TIME_IN_ATTENDEE_TIMEZONE: "2:30 PM",
NUMBER_TO_CALL: toNumber,
eventTypeId: eventTypeId.toString(),
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export function AgentConfigurationSheet({
{!readOnly && (
<AddVariablesDropdown
addVariable={addVariableToGeneralPrompt}
variables={DYNAMIC_TEXT_VARIABLES}
variables={[...DYNAMIC_TEXT_VARIABLES, "number_to_call"]}
addVariableButtonClassName="border rounded-[10px] py-1 px-1"
/>
)}
Expand Down
Loading