-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 1006 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (25 loc) · 1006 Bytes
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
# AEON Environment Configuration
# Copy this file to .env and fill in values as needed.
# ============================================
# AI Inference (Phase 1: Local only)
# ============================================
# Ollama runs locally. No API key needed.
# Make sure Ollama is running and the model is pulled:
# ollama pull gemma3:4b
# ollama pull llama3.2
OLLAMA_MODEL=gemma3:4b
OLLAMA_HOST=http://localhost:11434
# ============================================
# Future: Earth-side analysis (optional)
# ============================================
# These will be used later for research tools, scenario generation,
# and wiki improvement — NOT for the core colony decision engine.
# GROQ_API_KEY=your_key_here
# GROQ_MODEL=llama-3.1-70b-versatile
# XAI / Grok (future)
# XAI_API_KEY=your_key_here
# ============================================
# Development
# ============================================
LOG_LEVEL=INFO
# BACKEND_CORS_ORIGINS=http://localhost:5173,http://localhost:3000