From 83c1424a37750bde75aa85e6357dedd3391bbb07 Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Tue, 14 Oct 2025 02:22:16 -0400 Subject: [PATCH] added script for downloading qwen3-1.7b from huggingface --- backend/.gitignore | 1 + backend/get-qwen3-1.7b.sh | 3 +++ 2 files changed, 4 insertions(+) create mode 100755 backend/get-qwen3-1.7b.sh 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