-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
45 lines (40 loc) · 1.87 KB
/
Copy path.env.example
File metadata and controls
45 lines (40 loc) · 1.87 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
# Synthesis environment configuration
# Synthesis keeps product tuning and safety bounds as code defaults. Override
# only deployment paths, access, providers, or external tool integration here.
# --- Core ---
# Setting an absolute SYNTHESIS_VAULT path bypasses the local startup chooser.
# Leave it unset to use ~/Synthesis on POSIX or %USERPROFILE%\Synthesis on Windows.
# SYNTHESIS_VAULT="/absolute/path/to/vault"
# Optional override for provider profiles, usage metadata, and credential
# service metadata.
# SYNTHESIS_APP_DATA="$HOME/.config/synthesis"
SYNTHESIS_HOST="127.0.0.1"
SYNTHESIS_PORT=8000
SYNTHESIS_OPEN_BROWSER=true
# --- Private beta security ---
# Enable only when the origin is reachable exclusively through the trusted
# identity proxy. The proxy must set Cf-Access-Authenticated-User-Email.
SYNTHESIS_TRUST_PROXY_AUTH=false
SYNTHESIS_PUBLIC_ORIGIN="https://synthesis.example.org"
SYNTHESIS_ALLOWED_EMAILS="viewer@example.org,ingester@example.org"
SYNTHESIS_INGESTER_EMAILS="ingester@example.org"
# --- Chat provider ---
# The browser provider settings are preferred for normal use. These values keep
# environment-only and local Ollama deployments available.
SYNTHESIS_API_BASE="http://localhost:11434/v1"
SYNTHESIS_API_KEY="ollama"
# The quality floor uses the dense qwen3.6:27b model for every chat role.
# Override these explicitly when using another compatible provider model.
SYNTHESIS_EXTRACT_MODEL="qwen3.6:27b"
SYNTHESIS_CONSOLIDATE_MODEL="qwen3.6:27b"
SYNTHESIS_INTEGRATE_MODEL="qwen3.6:27b"
SYNTHESIS_REWRITE_MODEL="qwen3.6:27b"
# --- Embeddings ---
# These inherit SYNTHESIS_API_BASE and SYNTHESIS_API_KEY when unset.
# SYNTHESIS_EMBED_API_BASE="http://localhost:11434/v1"
# SYNTHESIS_EMBED_API_KEY="ollama"
SYNTHESIS_EMBED_MODEL="nomic-embed-text-v2-moe:latest"
SYNTHESIS_EMBED_DIMENSIONS=768
# --- Ingest ---
SYNTHESIS_YT_DLP_PATH="yt-dlp"
SYNTHESIS_SUBTITLES_LANG="en"