-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php-example
More file actions
executable file
·32 lines (30 loc) · 997 Bytes
/
config.php-example
File metadata and controls
executable file
·32 lines (30 loc) · 997 Bytes
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
<?php
return
[
'plugins' => [
'ChatScriptPatternMatch', 'PlainTextEqMatch', 'RegexMatch', 'LuisIntentMatch',
'VariableEval', 'Text', 'Buttons', 'Media', 'SendEmail', 'ApiCall', 'Weather'
],
'dotBot' => [
'uri' => 'http://domain/api/project/{id}/dotBot'
],
'flows' => [
'uri' => 'http://domain/api/project/{id}/flows'
],
'userData' => [
'uri' => 'mongodb://localhost:27017/bbot',
],
'chatscriptServer' => [
'host' => 'localhost',
'port' => 1024,
'botId' => '',
'userId' => 'bbot'
],
'msCognitiveAPI' => [
'domainZone' => 'westus.api.cognitive.microsoft.com',
'subscriptionKey' => ''
],
'accuweatherAPI' => [
'apikey' => ''
]
];