llm selection, notes saving, cleanup
This commit is contained in:
parent
ee19d52cb7
commit
44a82f4af8
13 changed files with 910 additions and 130 deletions
17
Dockerfile
Normal file
17
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue