-
Notifications
You must be signed in to change notification settings - Fork 25
/
config.py
51 lines (36 loc) · 2.08 KB
/
config.py
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
###################################################################
######## Configuration files for Bot ##########################
###################################################################
"""
config.py
This files has all the configurations for your bot.
"""
import os
import watson_developer_cloud
from slackclient import SlackClient
location = "/Users/xxxxxxxx/Downloads/Movie_Bot/" # replace with the full folder path where you downloaded the github repo
###################################################################
######## Slack configuration ##########################
###################################################################
SLACK_BOT_TOKEN='xoxb-xxxxxxxxxxxx-xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx'
SLACK_VERIFICATION_TOKEN='xxxxxxxxxxxxxxxxxxxxxxxx'
# instantiate Slack client
slack_client = SlackClient(SLACK_BOT_TOKEN) # do not change this parameter
###################################################################
######## Watson service configuration ##########################
###################################################################
service = watson_developer_cloud.AssistantV1(
iam_api_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', # replace with Password
version = '2018-09-20'
)
workspace_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' # replace with Assistant ID
###################################################################
######## Log files configuration ##########################
###################################################################
log_commands_path = location + "logs/log_commands.py" # do not change this parameter
follow_up_path = location + "logs/followup_email.py" # do not change this parameter
###################################################################
######## Temp files configuration ##########################
###################################################################
onetime_path = location + "nlp/nlp_solutions/onetime_run_file.py" # do not change this parameter
onetime_file = location + "nlp/nlp_solutions/onetime.txt" # do not change this parameter