-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathenv.example.txt
More file actions
35 lines (29 loc) · 1.41 KB
/
env.example.txt
File metadata and controls
35 lines (29 loc) · 1.41 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
# ============================================================================
# Autonomous Agent Configuration (TypeScript)
# Copy this file to .env and customize values
# ============================================================================
# -----------------------------------------------------------------------------
# LOCAL AI (GGUF) CONFIGURATION
# -----------------------------------------------------------------------------
MODELS_DIR=~/.eliza/models
LOCAL_SMALL_MODEL=eliza-1-2b-32k.gguf
# -----------------------------------------------------------------------------
# SHELL CONFIGURATION (sandboxed)
# -----------------------------------------------------------------------------
# If unset, the example defaults to: <repo>/examples/autonomous/sandbox
# SHELL_ALLOWED_DIRECTORY=
SHELL_TIMEOUT=30000
# -----------------------------------------------------------------------------
# AUTONOMY LOOP CONFIGURATION
# -----------------------------------------------------------------------------
AUTONOMY_INTERVAL_MS=2000
AUTONOMY_MAX_STEPS=200
# Allowed base commands (no pipes/redirection)
AUTONOMY_ALLOWED_COMMANDS=ls,pwd,cat,echo,touch,mkdir
# Stop/goal files (defaults live in the sandbox dir)
# AUTONOMY_GOAL_FILE=
# AUTONOMY_STOP_FILE=
# -----------------------------------------------------------------------------
# LOGGING
# -----------------------------------------------------------------------------
LOG_LEVEL=info