-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
34 lines (27 loc) · 1.03 KB
/
env.example
File metadata and controls
34 lines (27 loc) · 1.03 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
# ARIA Core — Environment Variables
# Copy to .env and customize for your deployment.
# Server
ARIA_HOST=0.0.0.0
ARIA_PORT=8090
ARIA_CORS_ORIGIN=*
# Buffer limits
ARIA_MAX_SNAPSHOTS=50000
ARIA_MAX_EVENTS=100000
# External tool paths (optional — auto-detected if installed in standard locations)
# ARIA_NASA42_MODEL_DIR=/path/to/nasa-42/Model
# LLM Cognitive Engine (optional — falls back to rule-based if not set)
# Set both vars to enable the primary cloud-LLM backend. The reference
# Python SDK is `anthropic` (see pyproject.toml); set ARIA_LLM_MODEL to
# whatever model id your SDK expects. Without the key, the engine uses
# the deterministic rule-based fallback.
# ANTHROPIC_API_KEY=
# ARIA_LLM_MODEL=
# Optional secondary advisor (google-genai SDK reads GEMINI_API_KEY).
# Provide a comma-separated rotation of model ids — lite tiers first.
# If unset, the secondary advisor is disabled.
# GEMINI_API_KEY=
# ARIA_GEMINI_MODELS=
# Logging
ARIA_LOG_LEVEL=INFO
# OpenTelemetry (optional)
# OTEL_EXPORTER_OTLP_ENDPOINT=http://tempo:4317