forked from deeppavlov/DeepPavlov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_config.json
85 lines (85 loc) · 1.92 KB
/
server_config.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
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
80
81
82
83
84
85
{
"common_defaults": {
"host": "0.0.0.0",
"port": 5000,
"model_endpoint": "/model",
"model_args_names": ["context"],
"https": false,
"https_cert_path": "",
"https_key_path": "",
"stateful": false,
"multi_instance": false
},
"telegram_defaults": {
"token": ""
},
"ms_bot_framework_defaults": {
"auth_polling_interval": 3500,
"conversation_lifetime": 3600,
"auth_app_id": "",
"auth_app_secret": ""
},
"alexa_defaults": {
"intent_name": "AskDeepPavlov",
"slot_name": "raw_input",
"start_message": "Welcome to DeepPavlov Alexa wrapper!",
"unsupported_message": "Sorry, DeepPavlov can't understand it.",
"conversation_lifetime": 3600
},
"model_defaults": {
"DstcSlotFillingNetwork": {
"host": "",
"port": "",
"model_endpoint": "/slot-fill",
"model_args_names": ""
},
"EcommerceSkill": {
"host": "",
"port": "",
"model_endpoint": "/ecommerce_skill",
"model_args_names": ["query", "history", "state"]
},
"ErrorModel": {
"host": "",
"port": "",
"model_endpoint": "/error-model",
"model_args_names": ""
},
"GoalOrientedBot": {
"host": "",
"port": "",
"model_endpoint": "/go-bot",
"model_args_names": ""
},
"KerasIntentModel": {
"host": "",
"port": "",
"model_endpoint": "/intents",
"model_args_names": ""
},
"NER": {
"host": "",
"port": "",
"model_endpoint": "/ner",
"model_args_names": ""
},
"SquadModel": {
"host": "",
"port": "",
"model_endpoint": "/squad",
"model_args_names": ["context", "question"]
},
"ODQA": {
"host": "",
"port": "",
"model_endpoint": "/odqa",
"model_args_names": ""
},
"Ranker": {
"host": "",
"port": "",
"model_endpoint": "/ranker",
"model_args_names": ""
}
}
}