mirror of
https://github.com/ml-explore/mlx-examples.git
synced 2025-08-29 05:40:26 +08:00
12 lines
269 B
Bash
12 lines
269 B
Bash
#!/bin/bash
|
|
|
|
commit=1204f9727005974587d6fc1dcd4d4f0ead87c856
|
|
url=https://raw.githubusercontent.com/ggerganov/llama.cpp/${commit}/src/
|
|
|
|
for file in 'unicode.cpp' 'unicode.h' 'unicode-data.cpp' 'unicode-data.h'
|
|
do
|
|
curl -OL ${url}/${file}
|
|
done
|
|
|
|
touch unicode_downloaded
|