-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathenv.example
More file actions
53 lines (41 loc) · 1.85 KB
/
Copy pathenv.example
File metadata and controls
53 lines (41 loc) · 1.85 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
# =============================================================================
# OpenAI Configuration
# =============================================================================
# Get your API key at https://platform.openai.com
OPENAI_API_KEY=
# =============================================================================
# Farcaster / Neynar Configuration
# =============================================================================
# Your Farcaster ID (FID) - find it at https://warpcast.com/~/settings
FARCASTER_FID=
# Neynar signer UUID - create at https://neynar.com
FARCASTER_SIGNER_UUID=
# Neynar API key - get at https://neynar.com
FARCASTER_NEYNAR_API_KEY=
# =============================================================================
# Agent Behavior
# =============================================================================
# Dry run mode - set to "false" to enable actual posting
FARCASTER_DRY_RUN=true
# Operation mode: "polling" or "webhook"
FARCASTER_MODE=polling
# Polling interval in seconds (default: 120)
FARCASTER_POLL_INTERVAL=120
# Enable autonomous casting (default: false)
ENABLE_CAST=false
# Autonomous cast interval in minutes
CAST_INTERVAL_MIN=90
CAST_INTERVAL_MAX=180
# Maximum cast length in characters (default: 320)
MAX_CAST_LENGTH=320
# Enable action processing (likes, recasts)
ENABLE_ACTION_PROCESSING=false
# =============================================================================
# Database Configuration (optional)
# =============================================================================
# PostgreSQL connection URL - uses PGLite if not set
# DATABASE_URL=postgres://user:password@localhost:5432/eliza_farcaster
# =============================================================================
# Logging (optional)
# =============================================================================
# LOG_LEVEL=info