-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconfig.py
38 lines (29 loc) · 1.25 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
# Set your name
NAME = "Ida"
# Choose your OpenAI Model (Chat only) - GPT-3.5 Turbo is 13x cheaper than GPT-4
MODEL_NAME = "gpt-3.5-turbo-0125"
# Word count for keyword summaries (the longer the more detailed the summaries will be)
WORD_COUNT = '50'
# Define category limits for the trending keywords - it will grab by top count first (check safron.io to look over your options)
CATEGORY_LIMITS = {
"Subjects": 2,
"Tools & Services": 2,
"Websites & Applications": 2,
"Concepts & Methods": 2,
"Platforms & Search Engines": 2,
"Companies & Organizations": 2,
"Hardware & Systems": 2,
"Languages & Syntax": 2,
"Frameworks & Libraries": 2,
"People": 2,
"AI Models & Assistants": 2,
"Bucket (other)": 0
}
# Set your keywords of interest - should always be there regardless if they are trending yesterday or not
KEYWORDS_OF_INTEREST = ["AI", "AWS", "Google", "LLMs", "Nvidia"]
# Set a category as something that is always there - categories grabs the first 2 highest count rather than if trending
CATEGORIES_OF_INTEREST = ["Platforms & Search Engines"]
########## SES Email Configs - Make sure you change these ########
SOURCE_EMAIL = '[email protected]'
TO_ADRESS = '[email protected]'
AWS_REGION_NAME = 'eu-north-1'