4 lines
176 B
Bash
Executable File
4 lines
176 B
Bash
Executable File
#!/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
|