-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.5 KB
/
.env.example
File metadata and controls
38 lines (32 loc) · 1.5 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
# =============================================================================
# Aether — Environment Variables
# =============================================================================
# Aether does NOT require a .env file in normal use. The onboarding wizard
# stores API keys in your OS keyring (Windows Credential Manager / macOS
# Keychain / Linux Secret Service) so they're never in plaintext on disk.
#
# Copy this file to .env only if you prefer environment-variable configuration
# (for example, in a container, CI, or developer setup).
# =============================================================================
# --- LLM Providers (optional — wizard stores these in keyring instead) -------
ANTHROPIC_API_KEY=
OPENAI_API_KEY=
GOOGLE_API_KEY=
# GROQ_API_KEY=
# OPENROUTER_API_KEY=
# --- Voice / STT / TTS (optional, cloud only) --------------------------------
ELEVENLABS_API_KEY=
# --- Local services -----------------------------------------------------------
OLLAMA_BASE_URL=http://localhost:11434
# --- Network ports ------------------------------------------------------------
WEBSOCKET_PORT=8765
HEALTH_PORT=8767
SERVER_HOST=127.0.0.1
# --- Data directory override (default: OS user_data_dir) ---------------------
# Leave blank to use the platform-appropriate location:
# Windows: %APPDATA%\aether
# macOS: ~/Library/Application Support/aether
# Linux: ~/.local/share/aether
# AETHER_DATA_DIR=
# --- Logging -----------------------------------------------------------------
LOG_LEVEL=INFO