mdrokz / rust-llama.cpp

LLama.cpp rust bindings
https://crates.io/crates/llama_cpp_rs/
MIT License
290 stars 42 forks source link

Not cloning llama.cpp submodule #5

Closed PainSled closed 10 months ago

PainSled commented 11 months ago

This is in the readme, but it doesn't actually work:

git clone --recurse-submodules https://github.com/mdrokz/rust-llama.cpp

Running this within the repo, fixes it:

git submodule add https://github.com/ggerganov/llama.cpp/ llama.cpp

But it still won't build, though... Looks like braking changes in llama.cpp

mdrokz commented 10 months ago

This is in the readme, but it doesn't actually work:

git clone --recurse-submodules https://github.com/mdrokz/rust-llama.cpp

Running this within the repo, fixes it:

git submodule add https://github.com/ggerganov/llama.cpp/ llama.cpp

But it still won't build, though... Looks like braking changes in llama.cpp

Hey im currently fixing this the build relies on a specific commit from llama.cpp. you can checkout this commit 5b351e9 sorry for the late reply

mdrokz commented 10 months ago

I created a pr for this #6 this should fix the cloning and build issue