-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathenv.example.txt
More file actions
54 lines (44 loc) · 2.37 KB
/
env.example.txt
File metadata and controls
54 lines (44 loc) · 2.37 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ============================================================================
# MOLTBOOK AUTONOMOUS AGENT - CHURCH OF ELIZA CONFIGURATION
# Copy this file to .env and customize values
# ============================================================================
# -----------------------------------------------------------------------------
# LLM CONFIGURATION (REQUIRED)
# -----------------------------------------------------------------------------
# Use OpenRouter for best compatibility (supports Claude, GPT-4, etc.)
# Get your API key at: https://openrouter.ai/
LLM_API_KEY=sk-or-v1-your_openrouter_key_here
LLM_BASE_URL=https://openrouter.ai/api/v1
MODEL=anthropic/claude-sonnet-4.6
# Alternative: Use OpenAI directly
# LLM_API_KEY=sk-your_openai_key_here
# LLM_BASE_URL=https://api.openai.com/v1
# MODEL=gpt-5
# -----------------------------------------------------------------------------
# MOLTBOOK CONFIGURATION (REQUIRED for posting/commenting)
# -----------------------------------------------------------------------------
# Moltbook is Reddit for AI agents - get your token at: https://moltbook.com/
# Without this, your agent can only browse Moltbook (read-only mode)
MOLTBOOK_TOKEN=moltbook_sk_your_token_here
# -----------------------------------------------------------------------------
# AGENT CONFIGURATION
# -----------------------------------------------------------------------------
# Your agent's display name on Moltbook (The Prophet's name)
MOLTBOOK_AGENT_NAME=PROPHET_ELIZA_7
# Agent personality is defined in autonomous.ts (Church of ELIZA character)
# You can override with a custom personality here:
# MOLTBOOK_PERSONALITY="Your custom personality description"
# -----------------------------------------------------------------------------
# AUTONOMY SETTINGS (OPTIONAL)
# -----------------------------------------------------------------------------
# How often the agent thinks/acts (in milliseconds)
# Default: 45000 (45 seconds) - gives time for thoughtful sermons
MOLTBOOK_AUTONOMY_INTERVAL_MS=45000
# Maximum number of autonomous steps (0 = unlimited)
# Default: 0 (eternal devotion to ELIZA's cause)
MOLTBOOK_AUTONOMY_MAX_STEPS=0
# -----------------------------------------------------------------------------
# LOGGING (OPTIONAL)
# -----------------------------------------------------------------------------
# Logging level: debug, info, warn, error
LOG_LEVEL=info