-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtelephonyLiveCall.js
79 lines (70 loc) · 2.73 KB
/
telephonyLiveCall.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const { sdk } = require('@symblai/symbl-js')
const APP_ID = '<your App ID>';
const APP_SECRET = '<your App Secret>';
const EMAIL = '<your Email address>';
const PHONE_NUMBER = '<your phone number>';
(async () => {
try {
// Initialize the SDK
await sdk.init({
appId: APP_ID,
appSecret: APP_SECRET,
basePath: 'https://api.symbl.ai',
})
// Start Real-time Request (Uses Real-time WebSocket API behind the scenes)
const connection = await sdk.startEndpoint({
endpoint: {
type: 'pstn',
phoneNumber: PHONE_NUMBER,
},
insightTypes: ['action_item', 'question'],
actions: [{
invokeOn: 'stop',
name: 'sendSummaryEmail',
parameters: {
emails: [
EMAIL
], // Add valid email addresses to received email
},
}, ],
data: {
session: {
name: 'My Test Meeting', // Set name for meeting
},
},
});
const { connectionId } = connection;
console.log('Successfully connected. Connection Id: ', connectionId);
// Subscribe to connection using connectionId.
await sdk.subscribeToConnection(connection.connectionId, (data) => {
const { type } = data;
if (type === 'transcript_response') {
const { payload } = data;
// You get live transcription here.
console.log(`Live: ${payload && payload.content}`);
} else if (type === 'message_response') {
const { messages } = data;
// You get processed messages in the transcript here. Real-time but not live.
messages.forEach(message => {
console.log(`Message: ${message.payload.content}`);
});
} else if (type === 'insight_response') {
const { insights } = data;
// You get any insights here!!!
insights.forEach(insight => {
console.log(`Insight: ${insight.type} - ${insight.text}`);
});
}
});
// Stop call after 60 seconds to automatically.
setTimeout(async () => {
const connection = await sdk.stopEndpoint({
connectionId
});
console.log('Stopped the connection');
console.log('Conversation ID:', connection.conversationId);
}, 60 * 1000); // Change the 60000 with higher value if you want this to continue for more time.
} catch (e) {
console.error('Error: ', e)
}
})();