-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.js
48 lines (47 loc) · 1.2 KB
/
project.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
'use strict';
module.exports = {
googleAction: {
nlu: {
name: 'dialogflow',
},
dialogflow: {
agent: {
language: 'en',
disableInteractionLogs: false,
disableStackdriverLogs: true,
googleAssistant: {
googleAssistantCompatible: true,
welcomeIntentSignInRequired: false,
startIntents: [],
systemIntents: [],
endIntentIds: [],
oAuthLinking: {
required: false,
grantType: 'AUTH_CODE_GRANT',
},
voiceType: 'FEMALE_1',
capabilities: [],
protocolVersion: 'V2',
autoPreviewEnabled: false,
isDeviceAgent: false,
},
defaultTimezone: 'America/Chicago',
isPrivate: true,
supportedLanguages: [
'es',
],
onePlatformApiVersion: 'v2',
analyzeQueryTextSentiment: false,
enabledKnowledgeBaseNames: [],
knowledgeServiceConfidenceAdjustment: -0.4,
webhook: {
url: '',
available: true,
useForDomains: false,
cloudFunctionsEnabled: false,
cloudFunctionsInitialized: false,
},
},
},
},
};