-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathcrucix.config.mjs
More file actions
45 lines (39 loc) · 1.65 KB
/
crucix.config.mjs
File metadata and controls
45 lines (39 loc) · 1.65 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
// Crucix Configuration — all settings with env var overrides
import "./apis/utils/env.mjs"; // Load .env first
export default {
port: parseInt(process.env.PORT) || 3117,
refreshIntervalMinutes: parseInt(process.env.REFRESH_INTERVAL_MINUTES) || 15,
llm: {
provider: process.env.LLM_PROVIDER || null, // anthropic | openai | gemini | codex | openrouter | minimax | mistral | ollama | grok
apiKey: process.env.LLM_API_KEY || null,
model: process.env.LLM_MODEL || null,
baseUrl: process.env.OLLAMA_BASE_URL || null,
},
telegram: {
botToken: process.env.TELEGRAM_BOT_TOKEN || null,
chatId: process.env.TELEGRAM_CHAT_ID || null,
botPollingInterval: parseInt(process.env.TELEGRAM_POLL_INTERVAL) || 5000,
channels: process.env.TELEGRAM_CHANNELS || null, // Comma-separated extra channel IDs
},
discord: {
botToken: process.env.DISCORD_BOT_TOKEN || null,
channelId: process.env.DISCORD_CHANNEL_ID || null,
guildId: process.env.DISCORD_GUILD_ID || null, // Server ID (for instant slash command registration)
webhookUrl: process.env.DISCORD_WEBHOOK_URL || null, // Fallback: webhook-only alerts (no bot needed)
},
// Delta engine thresholds — override defaults from lib/delta/engine.mjs
// Set to null to use built-in defaults
delta: {
thresholds: {
numeric: {
// Example overrides (uncomment to customize):
// vix: 3, // more sensitive to VIX moves
// wti: 5, // less sensitive to oil moves
},
count: {
// urgent_posts: 3, // need ±3 urgent posts to flag
// thermal_total: 1000, // need ±1000 thermal detections
},
},
},
};