mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
Setup instuctions
This commit is contained in:
28
README.md
28
README.md
@@ -6,7 +6,7 @@ The project architecture consists of three primary components:
|
|||||||
|
|
||||||
- **Front-End**: NextJS React project hosted on Vercel, located in `www/`.
|
- **Front-End**: NextJS React project hosted on Vercel, located in `www/`.
|
||||||
- **Back-End**: Python server that offers an API and data persistence, found in `server/`.
|
- **Back-End**: Python server that offers an API and data persistence, found in `server/`.
|
||||||
- **GPU implementation**: Providing services such as speech-to-text transcription, topic generation, automated summaries, and translations.
|
- **GPU implementation**: Providing services such as speech-to-text transcription, topic generation, automated summaries, and translations. Most reliable option is Modal deployment
|
||||||
|
|
||||||
It also uses https://github.com/fief-dev for authentication, and Vercel for deployment and configuration of the front-end.
|
It also uses https://github.com/fief-dev for authentication, and Vercel for deployment and configuration of the front-end.
|
||||||
|
|
||||||
@@ -40,15 +40,23 @@ It also uses https://github.com/fief-dev for authentication, and Vercel for depl
|
|||||||
|
|
||||||
All new contributions should be made in a separate branch. Before any code is merged into `main`, it requires a code review.
|
All new contributions should be made in a separate branch. Before any code is merged into `main`, it requires a code review.
|
||||||
|
|
||||||
### How to Install Blackhole (Mac Only)
|
### Usage instructions
|
||||||
|
|
||||||
To record both your voice and the meeting you're taking part in, you need :
|
To record both your voice and the meeting you're taking part in, you need :
|
||||||
|
|
||||||
- For an in-person meeting, make sure your microphone is in range of all participants.
|
- For an in-person meeting, make sure your microphone is in range of all participants.
|
||||||
- If using several miscrophones, make sure to merge the audio feeds into one with an external tool.
|
- If using several microphones, make sure to merge the audio feeds into one with an external tool.
|
||||||
- For an online meeting, if you do not use headphones, your microphone should be able to pick up both your voice and the audio feed of the meeting.
|
- For an online meeting, if you do not use headphones, your microphone should be able to pick up both your voice and the audio feed of the meeting.
|
||||||
- If you want to use headphones, you need to merge the audio feeds with an external tool.
|
- If you want to use headphones, you need to merge the audio feeds with an external tool.
|
||||||
|
|
||||||
|
Permissions:
|
||||||
|
|
||||||
|
You may have to add permission for browser's microphone access to record audio in
|
||||||
|
`System Preferences -> Privacy & Security -> Microphone`
|
||||||
|
`System Preferences -> Privacy & Security -> Accessibility`. You will be prompted to provide these when you try to connect.
|
||||||
|
|
||||||
|
### How to Install Blackhole (Mac Only)
|
||||||
|
|
||||||
This is an external tool for merging the audio feeds as explained in the previous section of this document.
|
This is an external tool for merging the audio feeds as explained in the previous section of this document.
|
||||||
Note: We currently do not have instructions for Windows users.
|
Note: We currently do not have instructions for Windows users.
|
||||||
|
|
||||||
@@ -58,12 +66,6 @@ Note: We currently do not have instructions for Windows users.
|
|||||||
- Then goto `System Preferences -> Sound` and choose the devices created from the Output and Input tabs.
|
- Then goto `System Preferences -> Sound` and choose the devices created from the Output and Input tabs.
|
||||||
- The input from your local microphone, the browser run meeting should be aggregated into one virtual stream to listen to and the output should be fed back to your specified output devices if everything is configured properly.
|
- The input from your local microphone, the browser run meeting should be aggregated into one virtual stream to listen to and the output should be fed back to your specified output devices if everything is configured properly.
|
||||||
|
|
||||||
Permissions:
|
|
||||||
|
|
||||||
You may have to add permission for browser's microphone access to record audio in
|
|
||||||
`System Preferences -> Privacy & Security -> Microphone`
|
|
||||||
`System Preferences -> Privacy & Security -> Accessibility`. You will be prompted to provide these when you try to connect.
|
|
||||||
|
|
||||||
## Front-End
|
## Front-End
|
||||||
|
|
||||||
Start with `cd www`.
|
Start with `cd www`.
|
||||||
@@ -208,4 +210,12 @@ poetry run python -m reflector.tools.process path/to/audio.wav
|
|||||||
|
|
||||||
## AI Models
|
## AI Models
|
||||||
|
|
||||||
|
### Modal
|
||||||
|
To deploy llm changes to modal, you need.
|
||||||
|
- a modal account
|
||||||
|
- set up the required secret in your modal account (REFLECTOR_GPU_APIKEY)
|
||||||
|
- install the modal cli
|
||||||
|
- connect your modal cli to your account if not done previously
|
||||||
|
- `modal run path/to/required/llm`
|
||||||
|
|
||||||
_(Documentation for this section is pending.)_
|
_(Documentation for this section is pending.)_
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ TRANSCRIPT_MODAL_API_KEY=***REMOVED***
|
|||||||
|
|
||||||
LLM_BACKEND=modal
|
LLM_BACKEND=modal
|
||||||
LLM_URL=https://monadical-sas--reflector-llm-web.modal.run
|
LLM_URL=https://monadical-sas--reflector-llm-web.modal.run
|
||||||
LLM_MODAL_API_KEY=<ask in zulip>
|
LLM_MODAL_API_KEY=***REMOVED***
|
||||||
|
|
||||||
AUTH_BACKEND=fief
|
AUTH_BACKEND=fief
|
||||||
AUTH_FIEF_URL=https://auth.reflector.media/reflector-local
|
AUTH_FIEF_URL=https://auth.reflector.media/reflector-local
|
||||||
|
|||||||
@@ -3,36 +3,15 @@
|
|||||||
# All the settings are described here: reflector/settings.py
|
# All the settings are described here: reflector/settings.py
|
||||||
#
|
#
|
||||||
|
|
||||||
## =======================================================
|
|
||||||
## Database
|
|
||||||
## =======================================================
|
|
||||||
|
|
||||||
#DATABASE_URL=sqlite://./reflector.db
|
|
||||||
#DATABASE_URL=postgresql://reflector:reflector@localhost:5432/reflector
|
|
||||||
|
|
||||||
|
|
||||||
## =======================================================
|
## =======================================================
|
||||||
## User authentication
|
## User authentication
|
||||||
## =======================================================
|
## =======================================================
|
||||||
|
|
||||||
## No authentication
|
|
||||||
#AUTH_BACKEND=none
|
|
||||||
|
|
||||||
## Using fief (fief.dev)
|
## Using fief (fief.dev)
|
||||||
#AUTH_BACKEND=fief
|
AUTH_BACKEND=fief
|
||||||
#AUTH_FIEF_URL=https://your-fief-instance....
|
AUTH_FIEF_URL=https://auth.reflector.media/reflector-local
|
||||||
#AUTH_FIEF_CLIENT_ID=xxx
|
AUTH_FIEF_CLIENT_ID=***REMOVED***
|
||||||
#AUTH_FIEF_CLIENT_SECRET=xxx
|
AUTH_FIEF_CLIENT_SECRET=<ask in zulip>
|
||||||
|
|
||||||
|
|
||||||
## =======================================================
|
|
||||||
## Public mode
|
|
||||||
## =======================================================
|
|
||||||
## If set to true, anonymous transcripts will be
|
|
||||||
## accessible to anybody.
|
|
||||||
|
|
||||||
#PUBLIC_MODE=false
|
|
||||||
|
|
||||||
|
|
||||||
## =======================================================
|
## =======================================================
|
||||||
## Transcription backend
|
## Transcription backend
|
||||||
@@ -41,7 +20,7 @@
|
|||||||
## full list of available transcription backend
|
## full list of available transcription backend
|
||||||
## =======================================================
|
## =======================================================
|
||||||
|
|
||||||
## Using local whisper (default)
|
## Using local whisper
|
||||||
#TRANSCRIPT_BACKEND=whisper
|
#TRANSCRIPT_BACKEND=whisper
|
||||||
#WHISPER_MODEL_SIZE=tiny
|
#WHISPER_MODEL_SIZE=tiny
|
||||||
|
|
||||||
@@ -51,21 +30,31 @@
|
|||||||
#TRANSLATE_URL=https://xxxxx--reflector-translator-web.modal.run
|
#TRANSLATE_URL=https://xxxxx--reflector-translator-web.modal.run
|
||||||
#TRANSCRIPT_MODAL_API_KEY=xxxxx
|
#TRANSCRIPT_MODAL_API_KEY=xxxxx
|
||||||
|
|
||||||
|
TRANSCRIPT_BACKEND=modal
|
||||||
|
TRANSCRIPT_URL=https://monadical-sas--reflector-transcriber-web.modal.run
|
||||||
|
TRANSCRIPT_MODAL_API_KEY=***REMOVED***
|
||||||
|
|
||||||
|
## =======================================================
|
||||||
|
## Transcription backend
|
||||||
|
##
|
||||||
|
## Only available in modal atm
|
||||||
|
## =======================================================
|
||||||
|
TRANSLATE_URL=https://monadical-sas--reflector-translator-web.modal.run
|
||||||
|
|
||||||
## =======================================================
|
## =======================================================
|
||||||
## LLM backend
|
## LLM backend
|
||||||
##
|
##
|
||||||
|
## Responsible for titles and short summary
|
||||||
## Check reflector/llm/* for the full list of available
|
## Check reflector/llm/* for the full list of available
|
||||||
## llm backend implementation
|
## llm backend implementation
|
||||||
## =======================================================
|
## =======================================================
|
||||||
|
|
||||||
## Use oobabooga (default)
|
|
||||||
#LLM_BACKEND=oobabooga
|
|
||||||
#LLM_URL=http://xxx:7860/api/generate/v1
|
|
||||||
|
|
||||||
## Using serverless modal.com (require reflector-gpu-modal deployed)
|
## Using serverless modal.com (require reflector-gpu-modal deployed)
|
||||||
#LLM_BACKEND=modal
|
LLM_BACKEND=modal
|
||||||
#LLM_URL=https://xxxxxx--reflector-llm-web.modal.run
|
LLM_URL=https://monadical-sas--reflector-llm-web.modal.run
|
||||||
#LLM_MODAL_API_KEY=xxx
|
LLM_MODAL_API_KEY=***REMOVED***
|
||||||
|
ZEPHYR_LLM_URL=https://monadical-sas--reflector-llm-zephyr-web.modal.run
|
||||||
|
|
||||||
|
|
||||||
## Using OpenAI
|
## Using OpenAI
|
||||||
#LLM_BACKEND=openai
|
#LLM_BACKEND=openai
|
||||||
@@ -78,11 +67,21 @@
|
|||||||
#LLM_OPENAI_MODEL="GPT4All Falcon"
|
#LLM_OPENAI_MODEL="GPT4All Falcon"
|
||||||
|
|
||||||
## Default LLM MODEL NAME
|
## Default LLM MODEL NAME
|
||||||
DEFAULT_LLM=lmsys/vicuna-13b-v1.5
|
#DEFAULT_LLM=lmsys/vicuna-13b-v1.5
|
||||||
|
|
||||||
## Cache directory to store models
|
## Cache directory to store models
|
||||||
CACHE_DIR=data
|
CACHE_DIR=data
|
||||||
|
|
||||||
|
## =======================================================
|
||||||
|
## 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
|
||||||
## =======================================================
|
## =======================================================
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ async def rtc_offer_base(
|
|||||||
|
|
||||||
async def flush_pipeline_and_quit(close=True):
|
async def flush_pipeline_and_quit(close=True):
|
||||||
# may be called twice
|
# may be called twice
|
||||||
# 1. either the client ask to sotp the meeting
|
# 1. either the client asked to stop the meeting
|
||||||
# - we flush and close
|
# - we flush and close
|
||||||
# - when we receive the close event, we do nothing.
|
# - when we receive the close event, we do nothing.
|
||||||
# 2. or the client close the connection
|
# 2. or the client close the connection
|
||||||
|
|||||||
Reference in New Issue
Block a user