-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
178 lines (138 loc) · 6.29 KB
/
example.env
File metadata and controls
178 lines (138 loc) · 6.29 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# =============================================================================
# infomux configuration example (.env)
# =============================================================================
#
# Copy this file to `.env` and edit values for your environment:
#
# cp example.env .env
#
# Quick start:
# 1) Uncomment only the vars you want to override.
# 2) Run `infomux run --check-deps` to verify local tool setup.
# 3) Run a pipeline, e.g. `infomux run --pipeline report-openai input.mp4`.
#
# Notes:
# - `infomux` auto-loads `.env` at startup.
# - Existing shell-exported env vars always override `.env` values.
# - Prefer leaving vars unset unless you need to override the app default.
# - Uncomment a variable to OVERRIDE the app default for that setting.
# - Keep variables commented out to use built-in defaults and auto-detection.
# - Do not commit real secrets. Keep this file local.
#
# -----------------------------------------------------------------------------
# Core paths and logging
# -----------------------------------------------------------------------------
# Base data directory for runs, models, and local SQLite db.
# Default: ~/.local/share/infomux
# Example:
# INFOMUX_DATA_DIR=/Users/you/.local/share/infomux
# Log level for CLI output.
# Allowed: DEBUG, INFO, WARN, WARNING, ERROR, CRITICAL
# Default: INFO
# INFOMUX_LOG_LEVEL=INFO
# Optional explicit dotenv file path to load at startup.
# If unset, infomux loads ./ .env from current working directory.
# Example:
# INFOMUX_ENV_FILE=/Users/you/src/infomux/.env
# -----------------------------------------------------------------------------
# Local tool overrides
# -----------------------------------------------------------------------------
# Full path to whisper GGML model file.
# If unset, infomux uses:
# $INFOMUX_DATA_DIR/models/whisper/ggml-base.en.bin
# INFOMUX_WHISPER_MODEL=/Users/you/.local/share/infomux/models/whisper/ggml-base.en.bin
# Full path to ffmpeg binary (optional override).
# If unset, infomux auto-detects ffmpeg on PATH.
# INFOMUX_FFMPEG_PATH=/opt/homebrew/bin/ffmpeg
# Full path to whisper-cli binary (optional override).
# If unset, infomux auto-detects whisper-cli on PATH.
# INFOMUX_WHISPER_CLI_PATH=/opt/homebrew/bin/whisper-cli
# Full path to tesseract binary (optional override for OCR workflows).
# If unset, infomux auto-detects tesseract on PATH.
# INFOMUX_TESSERACT_PATH=/opt/homebrew/bin/tesseract
# -----------------------------------------------------------------------------
# Audio recon (`infomux audio-recon`, scripts/recon-audio-capture.sh)
# -----------------------------------------------------------------------------
# Optional: substring match for capture device in OUTPUTS (overrides auto-pick).
# Example: your Aggregate Device name from Audio MIDI Setup
# INFOMUX_RECON_CAPTURE=infomux-aggregate-device
# Seconds to sleep after SwitchAudioSource when using --switch-output (default 0)
# INFOMUX_RECON_SLEEP_AFTER_SWITCH=2
# -----------------------------------------------------------------------------
# Local LLM summarization (Ollama)
# -----------------------------------------------------------------------------
#
# Minimal local setup:
# # INFOMUX_OLLAMA_MODEL=llama3.1:8b
# # INFOMUX_OLLAMA_URL=http://localhost:11434
# Ollama model used by local summarize step/pipelines.
# Default: llama3.1:8b
# Example: qwen2.5:32b-instruct
# INFOMUX_OLLAMA_MODEL=llama3.1:8b
# Ollama API URL.
# Default: http://localhost:11434
# INFOMUX_OLLAMA_URL=http://localhost:11434
# Optional content hint used by summarize and summarize_openai prompts.
# Examples: meeting, talk, podcast, lecture, standup, 1on1, "quarterly review"
# INFOMUX_CONTENT_TYPE_HINT=meeting
# -----------------------------------------------------------------------------
# External LLM summarization (OpenAI)
# -----------------------------------------------------------------------------
#
# Minimal OpenAI setup:
# # INFOMUX_OPENAI_API_KEY=sk-...
# # INFOMUX_OPENAI_MODEL=gpt-4o-mini
# # INFOMUX_OPENAI_BASE_URL=https://api.openai.com/v1
# Optional caching (recommended to reduce repeated API calls):
# # INFOMUX_OPENAI_CACHE=true
# # INFOMUX_OPENAI_CACHE_DIR=/Users/you/.cache/infomux/openai
# Required for summarize-openai / report-openai pipelines.
# Example: sk-...
# INFOMUX_OPENAI_API_KEY=sk-...
# OpenAI model for summarize_openai step.
# Default: gpt-4o-mini
# Example: gpt-4.1-mini
# INFOMUX_OPENAI_MODEL=gpt-4o-mini
# OpenAI API base URL.
# Default: https://api.openai.com/v1
# You can point this at a compatible gateway if needed.
# INFOMUX_OPENAI_BASE_URL=https://api.openai.com/v1
# Enable/disable local OpenAI response cache for summarize_openai.
# Default: true
# Allowed false-ish values: 0, false, no, off
# INFOMUX_OPENAI_CACHE=true
# Optional cache directory for OpenAI responses.
# Default: $XDG_CACHE_HOME/infomux/openai or ~/.cache/infomux/openai
# INFOMUX_OPENAI_CACHE_DIR=/Users/you/.cache/infomux/openai
# -----------------------------------------------------------------------------
# Storage integrations
# -----------------------------------------------------------------------------
#
# Enable only the integration(s) you use. These are optional.
# --- S3 (store_s3 step) ---
# Required S3 bucket name.
# Example: my-infomux-artifacts
# INFOMUX_S3_BUCKET=my-infomux-artifacts
# Optional key prefix (must end in /; infomux normalizes this if needed).
# Default: infomux/
# INFOMUX_S3_PREFIX=infomux/
# boto3 credentials are read from standard AWS env vars/profile (not infomux-specific),
# e.g. AWS_PROFILE, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION.
# --- PostgreSQL (store_postgres step) ---
# Required PostgreSQL connection URL.
# Example: postgresql://user:pass@localhost:5432/infomux
# INFOMUX_POSTGRES_URL=postgresql://user:pass@localhost:5432/infomux
# --- Obsidian (store_obsidian step) ---
# Required path to Obsidian vault root.
# Example: /Users/you/Documents/ObsidianVault
# INFOMUX_OBSIDIAN_VAULT=/Users/you/Documents/ObsidianVault
# Folder inside vault where notes are written.
# Default: Transcripts
# INFOMUX_OBSIDIAN_FOLDER=Transcripts
# Comma-separated default tags for Obsidian notes.
# Default: infomux,transcript
# INFOMUX_OBSIDIAN_TAGS=infomux,transcript
# --- Bear (store_bear step, macOS) ---
# Comma-separated default tags for Bear notes.
# Default: infomux,transcript
# INFOMUX_BEAR_TAGS=infomux,transcript