-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
32 lines (28 loc) · 800 Bytes
/
Copy pathconfig.py
File metadata and controls
32 lines (28 loc) · 800 Bytes
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
"""
System Configuration for WorldMonitor Global Threat Sentinel
"""
import os
# Primary AI Model Configuration (Fixed Local Model)
OLLAMA_MODEL = "llama3.2:3b"
OLLAMA_HOST = os.environ.get("OLLAMA_HOST", "http://localhost:11434")
# WorldMonitor Intelligence Feeds & Categories
FEED_CATEGORIES = [
"Geopolitics & Conflict",
"Maritime & Logistics Chokepoints",
"Global Energy Infrastructure",
"Cyber Threat Intelligence",
"Economic & Market Volatility"
]
# CII Score Threshold Definitions
CII_TIERS = {
"CRITICAL": (80, 100),
"HIGH": (60, 79),
"ELEVATED": (40, 59),
"MODERATE": (20, 39),
"LOW": (0, 19)
}
# Default Output Paths
OUTPUT_MD_PATH = "outputs.md"
OUTPUT_HTML_PATH = "report.html"
TEMPLATE_DIR = "templates"
TEMPLATE_FILE = "report_template.html"