added script for downloading qwen3-1.7b from huggingface

This commit is contained in:
2025-10-14 02:22:16 -04:00
parent c04536d5f6
commit 83c1424a37
2 changed files with 4 additions and 0 deletions

1
backend/.gitignore vendored
View File

@@ -1 +1,2 @@
**/mind.db **/mind.db
**/*.gguf

3
backend/get-qwen3-1.7b.sh Executable file
View File

@@ -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