diff --git a/backend/.gitignore b/backend/.gitignore index 381823e..4e2a4ae 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -1 +1,2 @@ **/mind.db +**/*.gguf diff --git a/backend/get-qwen3-1.7b.sh b/backend/get-qwen3-1.7b.sh new file mode 100755 index 0000000..f080088 --- /dev/null +++ b/backend/get-qwen3-1.7b.sh @@ -0,0 +1,3 @@ +#!/bin/bash +link=$(curl https://huggingface.co/unsloth/Qwen3-1.7B-GGUF/resolve/main/Qwen3-1.7B-BF16.gguf?download=true | awk -F' ' '{print $4}') +curl "$link" > qwen3-1.7b.gguf