mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 22:19:40 +02:00
- Switch matrix-project-doc-bot from OpenAI Whisper to local mana-stt - Add voice note support to matrix-nutriphi-bot (auto-analyze meals) - Add voice note support to matrix-todo-bot (create todos via voice) - All bots now use STT_URL config for the mana-stt service (port 3020)
25 lines
586 B
Text
25 lines
586 B
Text
PORT=3313
|
|
|
|
# Matrix
|
|
MATRIX_HOMESERVER_URL=http://localhost:8008
|
|
MATRIX_ACCESS_TOKEN=syt_xxx
|
|
# Optional: Restrict to specific users (comma-separated)
|
|
MATRIX_ALLOWED_USERS=
|
|
MATRIX_STORAGE_PATH=./data/bot-storage.json
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://postgres:password@localhost:5432/project_doc_bot
|
|
|
|
# S3 Storage
|
|
S3_ENDPOINT=http://localhost:9000
|
|
S3_REGION=us-east-1
|
|
S3_ACCESS_KEY=minioadmin
|
|
S3_SECRET_KEY=minioadmin
|
|
S3_BUCKET=project-doc-bot
|
|
|
|
# Speech-to-Text (mana-stt service)
|
|
STT_URL=http://localhost:3020
|
|
|
|
# OpenAI (for blog generation)
|
|
OPENAI_API_KEY=
|
|
OPENAI_MODEL=gpt-4o-mini
|