From 7886c38bfbbf7e4ddf661122f2c3e3a1ec355324 Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:03:19 -0700 Subject: [PATCH 1/3] ci: make sure to include convert_hf_to_gguf.py in output --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ebf7dea..f8a76cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,6 +63,7 @@ jobs: $distPath = if ("${{ github.event.inputs.build_type }}" -eq "RELEASE") { "build\release\dist" } else { "build\dev\dist" } New-Item -ItemType Directory -Force -Path "$distPath\src\gguf-py" Copy-Item -Path "src\gguf-py\*" -Destination "$distPath\src\gguf-py" -Recurse + Copy-Item -Path "src\convert_hf_to_gguf.py" -Destination "$distPath\src" Copy-Item -Path "src\convert_lora_to_gguf.py" -Destination "$distPath\src" Copy-Item -Path "src\convert_lora_to_ggml.py" -Destination "$distPath\src" @@ -72,6 +73,7 @@ jobs: distPath=$(if [ "${{ github.event.inputs.build_type }}" = "RELEASE" ]; then echo "build/release/dist"; else echo "build/dev/dist"; fi) mkdir -p $distPath/src/gguf-py cp -R src/gguf-py/* $distPath/src/gguf-py/ + cp src\convert_hf_to_gguf.py $distPath/src/ cp src/convert_lora_to_gguf.py $distPath/src/ cp src/convert_lora_to_ggml.py $distPath/src/ From 7349aedc78e3b4be878abfe06508308853f17ce8 Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:04:04 -0700 Subject: [PATCH 2/3] ci: fix slashes in build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f8a76cb..0befdf4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,7 +73,7 @@ jobs: distPath=$(if [ "${{ github.event.inputs.build_type }}" = "RELEASE" ]; then echo "build/release/dist"; else echo "build/dev/dist"; fi) mkdir -p $distPath/src/gguf-py cp -R src/gguf-py/* $distPath/src/gguf-py/ - cp src\convert_hf_to_gguf.py $distPath/src/ + cp src/convert_hf_to_gguf.py $distPath/src/ cp src/convert_lora_to_gguf.py $distPath/src/ cp src/convert_lora_to_ggml.py $distPath/src/ From 33dc02c5adcf011951d663ac735658e6c2fc0f34 Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Thu, 29 Aug 2024 14:46:14 -0700 Subject: [PATCH 3/3] docs: update readme to v1.8.0 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 21bdba9..70d6c82 100644 --- a/README.md +++ b/README.md @@ -128,8 +128,8 @@ ## Planned Features - Actual progress bar tracking - Perplexity testing - Web API and management (partially implemented in v1.6.2) -- ~~Themes~~ (added in v1.7.1) -- ~~Sleek UI menubar~~ (added in v1.7.1) +- HuggingFace upload/download (coming in the next release) +- AutoFP8 quantization and bitsandbytes (coming in the next release) ## Troubleshooting