chore: consolidate .env files — one .env in cortex/, one .env.example
- Removed orphaned root .env and .env.default (values already in cortex/.env, which is what the systemd service actually loads) - Replaced outdated cortex/.env.example with the comprehensive .env.default content - Also tracks: tested/persona/cleo/ (new test persona), Inara memory updates Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,33 +1,97 @@
|
||||
# Auth is handled by the claude CLI (claude setup-token) — no API key needed here.
|
||||
# ANTHROPIC_API_KEY=only_needed_if_switching_to_sdk
|
||||
# Cortex .env reference — copy to .env and fill in values
|
||||
# DO NOT commit .env — it contains secrets
|
||||
|
||||
# Path to the inara/ identity directory — relative to cortex/ or absolute
|
||||
INARA_DIR=../inara
|
||||
# ── Agent identity ───────────────────────────────────────────────────────────
|
||||
# Global display names used in distillation prompts and session logs.
|
||||
# Individual persona identities live in home/{username}/persona/{name}/IDENTITY.md
|
||||
AGENT_NAME=Inara
|
||||
USER_NAME=Scott
|
||||
|
||||
# Path for persistent JSON session files
|
||||
SESSIONS_DIR=./data/sessions
|
||||
# ── Home directory ────────────────────────────────────────────────────────────
|
||||
# Root for all user/persona data. Layout: home/{username}/persona/{name}/
|
||||
# Relative paths are resolved from the cortex/ directory.
|
||||
# Default: ../home (i.e. Cortex_and_Inara_dev/home/)
|
||||
# HOME_DIR=../home
|
||||
|
||||
# LLM defaults
|
||||
DEFAULT_MODEL=claude-sonnet-4-6
|
||||
DEFAULT_TIER=2
|
||||
# ── Google OAuth — "Sign in with Google" ────────────────────────────────────
|
||||
# Create credentials at console.cloud.google.com → APIs & Services → Credentials
|
||||
# Application type: Web Application
|
||||
# Authorised redirect URI: https://cortex.dgrzone.com/auth/google/callback
|
||||
# Pre-register users: cd cortex && .venv/bin/python manage_passwords.py google-add <user> <email>
|
||||
# Per-user Gemini key: add "gemini_api_key": "AIza..." to home/{username}/auth.json
|
||||
GOOGLE_CLIENT_ID=
|
||||
GOOGLE_CLIENT_SECRET=
|
||||
|
||||
# Session rolling window — number of messages to keep (user + assistant pairs)
|
||||
# 40 = 20 turns
|
||||
MAX_HISTORY_MESSAGES=40
|
||||
# ── Session auth ─────────────────────────────────────────────────────────────
|
||||
# Generate with: python3 -c "import secrets; print(secrets.token_hex(32))"
|
||||
JWT_SECRET=change-me-in-dotenv
|
||||
JWT_EXPIRE_DAYS=30
|
||||
|
||||
# Per-backend timeouts (seconds)
|
||||
# Gemini is generous — it frequently takes 30-60s under load
|
||||
# Local models may need time to load into VRAM before first response
|
||||
# ── SMTP (invite emails + future notifications) ───────────────────────────────
|
||||
SMTP_SERVER=linode.oneskyit.com
|
||||
SMTP_PORT=465
|
||||
SMTP_USERNAME=send_mail
|
||||
SMTP_PASSWORD=
|
||||
SMTP_FROM_EMAIL=noreply@oneskyit.com
|
||||
SMTP_FROM_NAME=Cortex
|
||||
# Base URL included in invite links
|
||||
CORTEX_BASE_URL=https://cortex.dgrzone.com
|
||||
|
||||
# ── Server ──────────────────────────────────────────────────────────────────
|
||||
HOST=0.0.0.0
|
||||
PORT=8000
|
||||
|
||||
# ── Google Chat bot ──────────────────────────────────────────────────────────
|
||||
# JWT audience for verifying inbound Workspace Add-on Chat webhook requests.
|
||||
# For Workspace Add-on Chat apps, the aud claim = the endpoint URL.
|
||||
# Leave blank to disable verification (dev/testing only).
|
||||
GOOGLE_CHAT_AUDIENCE=https://cortex.dgrzone.com/channels/google-chat
|
||||
|
||||
# ── Nextcloud Talk bot ───────────────────────────────────────────────────────
|
||||
NEXTCLOUD_URL=https://cloud.dgrzone.com
|
||||
NEXTCLOUD_TALK_BOT_SECRET=
|
||||
|
||||
# ── LLM backends ────────────────────────────────────────────────────────────
|
||||
# Primary backend: "claude" or "gemini" (other is always fallback)
|
||||
PRIMARY_BACKEND=claude
|
||||
|
||||
# Timeouts in seconds
|
||||
TIMEOUT_CLAUDE=60
|
||||
TIMEOUT_GEMINI=120
|
||||
TIMEOUT_LOCAL=300
|
||||
|
||||
# Google Chat — must respond within 30s or Chat shows an error to the user
|
||||
GOOGLE_CHAT_TIMEOUT=25
|
||||
# Backend pinned for Google Chat (claude recommended — more reliable within 25s)
|
||||
GOOGLE_CHAT_BACKEND=claude
|
||||
# TODO: add GOOGLE_CHAT_TOKEN for request verification once endpoint is public
|
||||
# ── Orchestrator (Gemini API — not Gemini CLI) ───────────────────────────────
|
||||
# Required for /orchestrate endpoint and tool use
|
||||
# Free tier key: https://aistudio.google.com/apikey
|
||||
GEMINI_API_KEY=
|
||||
|
||||
# Server
|
||||
PORT=8000
|
||||
HOST=0.0.0.0
|
||||
# Model for the orchestration tool loop (not the user-facing response)
|
||||
ORCHESTRATOR_MODEL=gemini-2.5-flash
|
||||
|
||||
# Safety cap on tool loop iterations
|
||||
ORCHESTRATOR_MAX_ROUNDS=10
|
||||
|
||||
# ── DuckDuckGo search ────────────────────────────────────────────────────────
|
||||
# Leave blank for free unauthenticated tier
|
||||
# Set to your API key for higher rate limits (paid DuckDuckGo account)
|
||||
DDG_API_KEY=
|
||||
DDG_MAX_RESULTS=5
|
||||
|
||||
# ── Aether Platform API ───────────────────────────────────────────────────────
|
||||
# Used by orchestrator tools: ae_journal_search, ae_journal_entry_create, ae_task_list
|
||||
# Same values as agents_sync/mcp/.env — copy from there
|
||||
AE_API_URL=https://dev-api.oneskyit.com
|
||||
AE_API_KEY=
|
||||
AE_ACCOUNT_ID=
|
||||
AE_API_TIMEOUT=15
|
||||
|
||||
# ── Distillation schedule ────────────────────────────────────────────────────
|
||||
SCHEDULER_TIMEZONE=America/New_York
|
||||
AUTO_DISTILL=true
|
||||
AUTO_DISTILL_SHORT=true
|
||||
AUTO_DISTILL_MID=true
|
||||
AUTO_DISTILL_LONG=false # manual review recommended before enabling
|
||||
|
||||
# Memory tier token budgets (soft caps)
|
||||
MEMORY_BUDGET_SHORT=3000
|
||||
MEMORY_BUDGET_MID=2000
|
||||
MEMORY_BUDGET_LONG=2000
|
||||
|
||||
Reference in New Issue
Block a user