forked from XargonWan/Synthetic_Heart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
134 lines (122 loc) · 4.86 KB
/
.env.example
File metadata and controls
134 lines (122 loc) · 4.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Synthetic Heart common deployment overrides.
#
# Copy this file to .env and uncomment only what you actually need.
# For the full list of low-frequency / advanced variables, see docs/compose_env_vars.rst.
# ---------------------------------------------------------------------------
# Persona / engine defaults
# ---------------------------------------------------------------------------
# SYNTH_NAME=Synth
# SYNTH_PROFILE=You are Synth, a modular AI persona.
# BASE_CORTEX=gemini_api
# LIVE_CORTEX=gemini_live
# ACTIVE_VOX_ENGINE=kitten
# ACTIVE_AURIS_ENGINE=whisper
# ACTIVE_IRIS_ENGINE=selenium-llm-engine
# SYNTH_AUTONOMY_MODE=always_ask
# ---------------------------------------------------------------------------
# LLM / provider credentials
# ---------------------------------------------------------------------------
# GEMINI_API_KEY=your_google_ai_studio_key
# OPENAI_API_KEY=your_openai_key
# OPENROUTER_API_KEY=your_openrouter_key
# ANTHROPIC_API_KEY=your_anthropic_key
# XAI_API_KEY=your_xai_key
# ---------------------------------------------------------------------------
# Interface credentials
# ---------------------------------------------------------------------------
# BOTFATHER_TOKEN=telegram_bot_token
# DISCORD_BOT_TOKEN=discord_bot_token
# MATRIX_HOMESERVER=https://matrix.example.com
# MATRIX_USER=@synth:example.com
# MATRIX_PASSWORD=matrix_password
# MATRIX_ACCESS_TOKEN=matrix_access_token
# ---------------------------------------------------------------------------
# Trainer / notifications
# ---------------------------------------------------------------------------
# TRAINER_IDS=telegram_bot/123456789,discord_bot/my-guild/my-channel
# TRAINER_CHAT_ID=telegram_bot/123456789
# LOG_CHAT_INTERFACE=telegram_bot
# LOG_CHAT_ID=123456789
# ---------------------------------------------------------------------------
# WebUI / container basics
# ---------------------------------------------------------------------------
# IMAGE_VERSION=latest
# PUID=1000
# PGID=1000
# TZ=UTC
# ROOT_PASSWORD=change_me
# SYNTH_WEBUI_HOST=0.0.0.0
# SYNTH_WEBUI_HTTP_PORT=8001
# SYNTH_WEBUI_HTTPS_PORT=8000
# SYNTH_WEBUI_TLS=1
# ---------------------------------------------------------------------------
# Primary database
# ---------------------------------------------------------------------------
# SYNTH_PRIMARY_DB=memory # memory -> DB_* (MariaDB), soul -> SOUL_* / SOUL_POSTGRES_DSN
# DB_HOST=synth-db
# DB_PORT=3306
# DB_USER=synth
# DB_PASS=synth
# DB_NAME=synth
# DB_ROOT_PASS=root
# ---------------------------------------------------------------------------
# Optional SOUL persistence
# ---------------------------------------------------------------------------
# SOUL_REPOSITORY_BACKEND=memory
# SOUL_POSTGRES_DSN=postgresql://soul:soul@synth-soul-db:5432/soul_memory
# SOUL_PG_HOST=synth-soul-db
# SOUL_PG_PORT=5432
# SOUL_PG_DB=soul_memory
# SOUL_PG_USER=soul
# SOUL_PG_PASSWORD=soul
# EXT_SOUL_DB_PORT=5432
# ---------------------------------------------------------------------------
# Common behavior / defaults
# ---------------------------------------------------------------------------
# PROJECT_DEFAULT_LANGUAGE=en
# PROJECT_DEFAULT_TONE=balanced
# DIARY_HISTORY_DAYS=7
# GRILLO_BEAT_INTERVAL=900
# ENABLE_RECON=1
# ENABLE_DEBRIEF=1
# ---------------------------------------------------------------------------
# Optional observability
# ---------------------------------------------------------------------------
# LANGFUSE_ENABLED=0
# LANGFUSE_HOST=https://cloud.langfuse.com
# LANGFUSE_PUBLIC_KEY=pk-lf-...
# LANGFUSE_SECRET_KEY=sk-lf-...
# CORTEX_API_LOG_ENABLED=1
# LANGFUSE_ENABLED=0
# CORTEX_LANGFUSE_ENABLED=0
# LANGFUSE_FLUSH_EACH_CALL=0
# CORTEX_LANGFUSE_REDACT_PAYLOADS=1
# CORTEX_LANGFUSE_CAPTURE_HEADERS=0
# CORTEX_LANGFUSE_CAPTURE_GENERATIONS=1
# LANGFUSE_HOST=https://cloud.langfuse.com
# LANGFUSE_BASE_URL=https://cloud.langfuse.com
# LANGFUSE_PUBLIC_KEY=pk-lf-...
# LANGFUSE_SECRET_KEY=sk-lf-...
# ---------------------------------------------------------------------------
# Weather / scheduled reporting
# ---------------------------------------------------------------------------
# WEATHER_FETCH_TIME=08:00
# WEATHER_DAILY_REPORT_ENABLED=0
# WEATHER_DAILY_REPORT_TIME=08:00
# WEATHER_DAILY_REPORT_LANGUAGE=en
# WEATHER_DAILY_REPORT_INTERFACE=telegram_bot/123456789
# ---------------------------------------------------------------------------
# Advanced storage / path / internal overrides
# ---------------------------------------------------------------------------
# XDG_DATA_HOME=/app/data
# SYNTH_SECRET_KEY=replace_me
# SYNTH_SECRET_FILE=/run/secrets/synth_secret_key
# SYNTH_ATTACHMENTS_ROOT=/app/data/attachments
# SYNTH_EXPOSED_STORAGE_ROOT=/app/data/exposed
# SYNTH_BACKUPS_DIR=/app/backups
# SYNTH_HOST_OS=linux
# SYNTH_VERSION=dev
# SYNTH_MATEENGINE_PROMOTE_ENABLED=1
# SYNTH_MATEENGINE_PROMPT_OVERRIDE=
# SYNTH_MATEENGINE_UPLOAD_CLEANUP_INTERVAL_S=3600
# SYNTH_MATEENGINE_UPLOAD_TTL_DAYS=7