This commit is contained in:
Igor Loskutov
2025-12-05 15:51:11 -05:00
parent 426a5dd70d
commit b819d0abc1
5 changed files with 44 additions and 11 deletions

View File

@@ -63,18 +63,21 @@ TRANSLATE_URL=https://monadical-sas--reflector-translator-web.modal.run
#TRANSLATION_MODAL_API_KEY=xxxxx
## =======================================================
## LLM backend
## LLM backend (Required)
##
## Responsible for titles and short summary
## Check reflector/llm/* for the full list of available
## llm backend implementation
## Responsible for generating titles, summaries, and topic detection
## Requires OpenAI API key
## =======================================================
## OpenAI API key - get from https://platform.openai.com/account/api-keys
LLM_API_KEY=sk-your-openai-api-key
LLM_MODEL=gpt-4o-mini
## Optional: Custom endpoint (defaults to OpenAI)
# LLM_URL=https://api.openai.com/v1
## Context size for summary generation (tokens)
# LLM_MODEL=microsoft/phi-4
LLM_CONTEXT_WINDOW=16000
LLM_URL=
LLM_API_KEY=sk-
## =======================================================
## Diarization
@@ -88,6 +91,22 @@ DIARIZATION_URL=https://monadical-sas--reflector-diarizer-web.modal.run
#DIARIZATION_MODAL_API_KEY=xxxxx
## =======================================================
## Transcript Storage
##
## Where to store audio files and transcripts
## Options: local, aws
## =======================================================
TRANSCRIPT_STORAGE_BACKEND=local
## For AWS S3 storage (optional):
#TRANSCRIPT_STORAGE_BACKEND=aws
#TRANSCRIPT_STORAGE_AWS_ACCESS_KEY_ID=your-aws-access-key
#TRANSCRIPT_STORAGE_AWS_SECRET_ACCESS_KEY=your-aws-secret-key
#TRANSCRIPT_STORAGE_AWS_BUCKET_NAME=reflector-media
#TRANSCRIPT_STORAGE_AWS_REGION=us-east-1
## =======================================================
## Sentry
## =======================================================