Buildability

This commit is contained in:
Elizabeth Cray 2024-04-16 13:54:45 -04:00
parent 9e353610d3
commit a546418bd2
2 changed files with 8 additions and 2 deletions

View File

@ -13,11 +13,16 @@ Meeting transcription and summarization, all running in local models without sen
virtualenv Wazowski --python=python3.9.9
source Wazowski/bin/activate
pip install -r requirements.txt
python3 fetch_models.py
```
# Usage
```bash
python3 wazowski.py {meeting_video_recording}
python3 wazowski.py -i {meeting_video_recording} -o {meeting_summary_output}
```
# Build
```bash
python3 -m nuitka --onefile --module-parameter=torch-disable-jit=yes wazowski.py
```

View File

@ -2,3 +2,4 @@ openai-whisper @ git+https://github.com/openai/whisper.git
ffmpeg-python
spacy
spacy_download
nuitka