# org-agent: Neural Engine Configuration # Get your API key from the respective provider (e.g., Google AI Studio for Gemini) LLM_API_KEY="your_api_key_here" LLM_ENDPOINT="https://generativelanguage.googleapis.com/v1beta/models/gemini-pro:generateContent" # OpenRouter Configuration (Optional) OPENROUTER_API_KEY="your_openrouter_key_here" # Dynamic Model Configuration (Provider Suffixes) # These can also be set via Org-mode properties in your Memex # :LLM_MODEL_OPENAI: gpt-4o # :LLM_MODEL_ANTHROPIC: claude-3-5-sonnet-20240620 # :LLM_MODEL_OPENROUTER: google/gemini-pro-1.5 # System 2: Symbolic Constraints SAFETY_BLOCK_SHELL=true GTD_ENFORCE_INTEGRITY=true # OACP 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 # OACP Integrity & Authentication (HMAC-SHA256) OACP_ENFORCE_HMAC=false OACP_HMAC_SECRET="change-this-to-a-secure-random-string"