Files
passepartout/.env.example

50 lines
1.4 KiB
Plaintext

# org-agent: Neural Engine Configuration
# Core LLM Providers
GEMINI_API_KEY="your_gemini_key_here"
ANTHROPIC_API_KEY="your_anthropic_key_here"
OPENAI_API_KEY="your_openai_key_here"
GROQ_API_KEY="your_groq_key_here"
OPENROUTER_API_KEY="your_openrouter_key_here"
# Legacy/Default (Optional)
LLM_API_KEY="your_api_key_here"
LLM_ENDPOINT="https://generativelanguage.googleapis.com/v1beta/models/gemini-pro:generateContent"
# Communication Gateways
TELEGRAM_BOT_TOKEN="your_telegram_bot_token_here"
SIGNAL_ACCOUNT_NUMBER="+1..."
# System 2: Symbolic Constraints
SAFETY_BLOCK_SHELL=true
GTD_ENFORCE_INTEGRITY=true
# Harness Protocol Daemon Configuration
ORG_AGENT_DAEMON_PORT=9105
ORG_AGENT_WEB_PORT=8080
DAEMON_HOST="0.0.0.0"
HEARTBEAT_INTERVAL=60
# Memex Integration
# Inside Docker, /app/ is the root for consolidated notes
MEMEX_DIR="/memex"
ZETTELKASTEN_DIR="/memex/notes"
SKILLS_DIR="/memex/notes"
# PARA Structure (Consolidated)
INBOX_DIR="/memex/inbox"
DAILY_DIR="/memex/daily"
PROJECTS_DIR="/memex/projects"
AREAS_DIR="/memex/areas"
RESOURCES_DIR="/memex/resources"
ARCHIVES_DIR="/memex/archives"
SYSTEM_DIR="/memex/system"
# Identity Configuration
MEMEX_USER="YourName"
MEMEX_ASSISTANT="AgentName"
RECIPIENT_ID="+1..." # For Signal/Telegram delivery
# Harness Protocol Integrity & Authentication (HMAC-SHA256)
Harness Protocol_ENFORCE_HMAC=false
Harness Protocol_HMAC_SECRET="change-this-to-a-secure-random-string"