From a4077005b28081433b835ac954d3fe04a7134a13 Mon Sep 17 00:00:00 2001 From: Sara Date: Mon, 12 Aug 2024 12:22:21 +0200 Subject: [PATCH] Setup instuctions --- README.md | 28 ++++++++---- server/.env_template | 2 +- server/env.example | 67 ++++++++++++++--------------- server/reflector/views/rtc_offer.py | 2 +- 4 files changed, 54 insertions(+), 45 deletions(-) diff --git a/README.md b/README.md index 83db0f2f..2a5600ce 100644 --- a/README.md +++ b/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/`. - **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. @@ -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. -### How to Install Blackhole (Mac Only) +### Usage instructions 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. -- 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. - 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. 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. - 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 Start with `cd www`. @@ -208,4 +210,12 @@ poetry run python -m reflector.tools.process path/to/audio.wav ## 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.)_ diff --git a/server/.env_template b/server/.env_template index d25797d3..8252dfdd 100644 --- a/server/.env_template +++ b/server/.env_template @@ -4,7 +4,7 @@ TRANSCRIPT_MODAL_API_KEY=***REMOVED*** LLM_BACKEND=modal LLM_URL=https://monadical-sas--reflector-llm-web.modal.run -LLM_MODAL_API_KEY= +LLM_MODAL_API_KEY=***REMOVED*** AUTH_BACKEND=fief AUTH_FIEF_URL=https://auth.reflector.media/reflector-local diff --git a/server/env.example b/server/env.example index c5a38bf5..e36145d5 100644 --- a/server/env.example +++ b/server/env.example @@ -3,36 +3,15 @@ # 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 ## ======================================================= -## No authentication -#AUTH_BACKEND=none - ## Using fief (fief.dev) -#AUTH_BACKEND=fief -#AUTH_FIEF_URL=https://your-fief-instance.... -#AUTH_FIEF_CLIENT_ID=xxx -#AUTH_FIEF_CLIENT_SECRET=xxx - - -## ======================================================= -## Public mode -## ======================================================= -## If set to true, anonymous transcripts will be -## accessible to anybody. - -#PUBLIC_MODE=false - +AUTH_BACKEND=fief +AUTH_FIEF_URL=https://auth.reflector.media/reflector-local +AUTH_FIEF_CLIENT_ID=***REMOVED*** +AUTH_FIEF_CLIENT_SECRET= ## ======================================================= ## Transcription backend @@ -41,7 +20,7 @@ ## full list of available transcription backend ## ======================================================= -## Using local whisper (default) +## Using local whisper #TRANSCRIPT_BACKEND=whisper #WHISPER_MODEL_SIZE=tiny @@ -51,21 +30,31 @@ #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=***REMOVED*** + +## ======================================================= +## 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 ## ======================================================= -## Use oobabooga (default) -#LLM_BACKEND=oobabooga -#LLM_URL=http://xxx:7860/api/generate/v1 - ## Using serverless modal.com (require reflector-gpu-modal deployed) -#LLM_BACKEND=modal -#LLM_URL=https://xxxxxx--reflector-llm-web.modal.run -#LLM_MODAL_API_KEY=xxx +LLM_BACKEND=modal +LLM_URL=https://monadical-sas--reflector-llm-web.modal.run +LLM_MODAL_API_KEY=***REMOVED*** +ZEPHYR_LLM_URL=https://monadical-sas--reflector-llm-zephyr-web.modal.run + ## Using OpenAI #LLM_BACKEND=openai @@ -78,11 +67,21 @@ #LLM_OPENAI_MODEL="GPT4All Falcon" ## Default LLM MODEL NAME -DEFAULT_LLM=lmsys/vicuna-13b-v1.5 +#DEFAULT_LLM=lmsys/vicuna-13b-v1.5 ## Cache directory to store models 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 ## ======================================================= diff --git a/server/reflector/views/rtc_offer.py b/server/reflector/views/rtc_offer.py index 3f0ca1ac..c537e878 100644 --- a/server/reflector/views/rtc_offer.py +++ b/server/reflector/views/rtc_offer.py @@ -71,7 +71,7 @@ async def rtc_offer_base( async def flush_pipeline_and_quit(close=True): # 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 # - when we receive the close event, we do nothing. # 2. or the client close the connection