19 lines
355 B
Plaintext
19 lines
355 B
Plaintext
# Redis 配置(可选,用于分布式部署)
|
|
|
|
# 连接配置
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_DB=0
|
|
|
|
# 事件队列配置
|
|
REDIS_EVENT_QUEUE=security_events
|
|
REDIS_ALARM_QUEUE=security_alarms
|
|
|
|
# 大模型 API 配置
|
|
LLM_API_KEY=your-api-key
|
|
LLM_BASE_URL=https://api.openai.com/v1
|
|
LLM_MODEL=gpt-4-vision-preview
|
|
|
|
# 其他配置
|
|
LOG_LEVEL=INFO
|