-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpipeline_conf.json
35 lines (31 loc) · 1 KB
/
pipeline_conf.json
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
{"services": {
"last_chance_service": {
"connector": {
"protocol": "python",
"class_name": "PredefinedTextConnector",
"response_text": "Sorry, something went wrong inside. Please tell me, what did you say."
},
"state_manager_method": "add_bot_utterance_last_chance",
"tags": ["last_chance"]
},
"timeout_service": {
"connector": {
"protocol": "python",
"class_name": "PredefinedTextConnector",
"response_text": "Sorry, I need to think more on that. Let's talk about something else."
},
"state_manager_method": "add_bot_utterance_last_chance",
"tags": ["timeout"]
},
"skill": {
"connector": {
"protocol": "http",
"url": "http://skill:3000/respond"
},
"dialog_formatter": "dp_formatters:last_utt_dialog",
"response_formatter": "dp_formatters:base_formatter_service",
"state_manager_method": "add_bot_utterance"
}
},
"connectors": {}
}