mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* feat: use llamaindex for transcript final title too * refactor: removed llm backend, replaced with one single class+llamaindex * refactor: self-review * fix: typing * fix: tests * refactor: extract clean_title and add tests * test: fix * test: remove ensure_casing/nltk * fix: tiny mistake
71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
#
|
|
# This file serve as an example of possible configuration
|
|
# All the settings are described here: reflector/settings.py
|
|
#
|
|
|
|
## =======================================================
|
|
## User authentication
|
|
## =======================================================
|
|
|
|
## Using jwt/authentik
|
|
AUTH_BACKEND=jwt
|
|
AUTH_JWT_AUDIENCE=
|
|
|
|
## =======================================================
|
|
## Transcription backend
|
|
##
|
|
## Check reflector/processors/audio_transcript_* for the
|
|
## full list of available transcription backend
|
|
## =======================================================
|
|
|
|
## Using local whisper
|
|
#TRANSCRIPT_BACKEND=whisper
|
|
|
|
## Using serverless modal.com (require reflector-gpu-modal deployed)
|
|
#TRANSCRIPT_BACKEND=modal
|
|
#TRANSCRIPT_URL=https://xxxxx--reflector-transcriber-web.modal.run
|
|
#TRANSLATE_URL=https://xxxxx--reflector-translator-web.modal.run
|
|
#TRANSCRIPT_MODAL_API_KEY=xxxxx
|
|
|
|
TRANSCRIPT_BACKEND=modal
|
|
TRANSCRIPT_URL=https://monadical-sas--reflector-transcriber-web.modal.run
|
|
TRANSCRIPT_MODAL_API_KEY=
|
|
|
|
## =======================================================
|
|
## Transcription backend
|
|
##
|
|
## Only available in modal atm
|
|
## =======================================================
|
|
TRANSLATE_URL=https://monadical-sas--reflector-translator-web.modal.run
|
|
|
|
## =======================================================
|
|
## LLM backend
|
|
##
|
|
## Responsible for titles and short summary
|
|
## Check reflector/llm/* for the full list of available
|
|
## llm backend implementation
|
|
## =======================================================
|
|
|
|
## Context size for summary generation (tokens)
|
|
# LLM_MODEL=microsoft/phi-4
|
|
LLM_CONTEXT_WINDOW=16000
|
|
LLM_URL=
|
|
LLM_API_KEY=sk-
|
|
|
|
## =======================================================
|
|
## Diarization
|
|
##
|
|
## Only available on modal
|
|
## To allow diarization, you need to expose expose the files to be dowloded by the pipeline
|
|
## =======================================================
|
|
DIARIZATION_ENABLED=false
|
|
DIARIZATION_URL=https://monadical-sas--reflector-diarizer-web.modal.run
|
|
|
|
|
|
## =======================================================
|
|
## Sentry
|
|
## =======================================================
|
|
|
|
## Sentry DSN configuration
|
|
#SENTRY_DSN=
|