-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing import + Build for Linux
- Loading branch information
1 parent
57b5477
commit 05cf1b1
Showing
5 changed files
with
55 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
pyinstaller --noconfirm LlamaAssistant.spec | ||
python3 -O -m PyInstaller --noconfirm LlamaAssistant.spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "llama-assistant" | ||
version = "0.1.28" | ||
version = "0.1.29" | ||
authors = [ | ||
{name = "Viet-Anh Nguyen", email = "[email protected]"}, | ||
] | ||
|
@@ -33,6 +33,7 @@ dependencies = [ | |
"SpeechRecognition", | ||
"huggingface_hub", | ||
"openwakeword", | ||
"whisper-cpp-python", | ||
] | ||
dynamic = [] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ llama-cpp-python | |
huggingface_hub==0.25.1 | ||
openwakeword==0.6.0 | ||
pyinstaller==6.10.0 | ||
whisper-cpp-python==0.2.0 |