-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargus.example.yaml
More file actions
50 lines (41 loc) · 1.19 KB
/
argus.example.yaml
File metadata and controls
50 lines (41 loc) · 1.19 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
48
49
50
# Argus Configuration
# Copy this file to argus.yaml and customize as needed.
# Environment variables override these settings (prefix: ARGUS_).
server:
host: "0.0.0.0"
port: 7600
llm:
provider: "openai" # openai, anthropic, gemini
model: "gpt-4o"
api_key: "" # Or set ARGUS_LLM__API_KEY env var
temperature: 0.1
max_tokens: 4096
ai_budget:
daily_token_limit: 500000
hourly_token_limit: 100000
review_frequency: "6h"
digest_frequency: "24h"
priority_reserve: 0.3
storage:
data_dir: "/data"
collector:
metrics_interval: 15 # seconds
process_interval: 30 # seconds
log_paths:
- "/var/log/syslog"
- "/var/log/auth.log"
security:
# secret_key is auto-generated on first run and saved to {data_dir}/.secret_key.
# Set ARGUS_SECURITY__SECRET_KEY or uncomment below to use your own:
# secret_key: "your-custom-secret-here"
session_expiry_hours: 24
max_login_attempts: 10
lockout_minutes: 15
alerting:
webhook_urls: []
email_enabled: false
# License key for Pro/Enterprise features (open-core model).
# Generate a key with the keygen utility or set ARGUS_LICENSE__KEY env var.
# license:
# key: "eyJ..."
debug: false