llm selection, notes saving, cleanup

This commit is contained in:
Martin Jaros 2024-05-02 00:12:45 +02:00
commit 44a82f4af8
13 changed files with 910 additions and 130 deletions

17
Dockerfile Normal file
View file

@ -0,0 +1,17 @@
FROM python:3.10.12
WORKDIR /LectureSummarizer
COPY . /LectureSummarizer
RUN pip install --no-cache-dir \
sounddevice \
soundfile \
numpy \
openai-whisper \
torch \
scikit-learn \
nltk \
llama-cpp-python
CMD ["python", "main.py"]