Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/leafspark/AutoGGUF
Browse files Browse the repository at this point in the history
  • Loading branch information
leafspark committed Aug 29, 2024
2 parents 6583412 + 33dc02c commit 5d6b6fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ To use a specific language, set the `AUTOGGUF_LANGUAGE` environment variable to
- 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

Expand Down

0 comments on commit 5d6b6fb

Please sign in to comment.