Skip to content

Commit

Permalink
Refactor code to update default context size and storage folder
Browse files Browse the repository at this point in the history
  • Loading branch information
royshil committed Oct 28, 2024
1 parent 6315797 commit 83d0087
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions note-taker.spec
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ note_taker_sources = [
'src/audio/Transcriber.py',
'src/llm/model.py',
'src/notes/manager.py',
'src/utils/defaults.py',
'src/utils/helpers.py',
'src/utils/resource_path.py'
'src/utils/defaults.py'
'src/utils/resource_path.py',
'src/utils/storage.py'
]

Expand All @@ -47,7 +47,7 @@ if args.mac_osx:

numpy_datas, numpy_binaries, numpy_hiddenimports = collect_all('numpy')
llama_cpp_datas, llama_cpp_binaries, llama_cpp_hiddenimports = collect_all('llama_cpp')
whisper_datas, whisper_binaries, whisper_hiddenimports = collect_all('simpler-whisper')
whisper_datas, whisper_binaries, whisper_hiddenimports = collect_all('simpler_whisper')
ws_hiddenimports=['websockets', 'websockets.legacy']

a = Analysis(
Expand Down

0 comments on commit 83d0087

Please sign in to comment.