emission-extractor / install-llamacpp.sh
nopperl's picture
implement inference using llama.cpp
176b16b
raw history blame
No virus
142 Bytes
#!/bin/sh
if [ ! -f llama.cpp/build/bin/main ]; then
cd llama.cpp
mkdir build
cd build
cmake ..
cmake --build . --config Release
fi