forked from facebookresearch/ParlAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.py
More file actions
47 lines (38 loc) · 1.07 KB
/
run.py
File metadata and controls
47 lines (38 loc) · 1.07 KB
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
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
"""
Messenger Runner.
"""
from parlai.core.params import ParlaiParser
from parlai.chat_service.services.messenger.messenger_manager import MessengerManager
import parlai.chat_service.core.shared_utils as utils
SERVICE_NAME = 'messenger'
def setup_args():
"""
Set up args.
"""
parser = ParlaiParser(False, False)
parser.add_parlai_data_path()
parser.add_messenger_args()
return parser.parse_args()
def run(opt):
"""
Run MessengerManager.
"""
opt['service'] = SERVICE_NAME
manager = MessengerManager(opt)
try:
manager.start_task()
except BaseException:
raise
finally:
manager.shutdown()
if __name__ == '__main__':
opt = setup_args()
config_path = opt.get('config_path')
config = utils.parse_configuration_file(config_path)
opt.update(config['world_opt'])
opt['config'] = config
run(opt)