Mike Cvet
Mike Cvet
Same issue here ``` error occurred: Command ZERO_AR_DATE="1" "ar" "cq" [...] target/debug/build/llama_cpp_rs-7523fd9532577412/out/llama.cpp/ggml.o" with args "ar" did not execute successfully (status code exit status: 1). ```
In my project, which depends on rust-llama.cpp, I fixed this by pinning the upstream `cc` dependency in my Cargo.toml: ``` [dependencies] cc = "=1.0.83" ```
Reading through here, it seems like llama.cpp needs to be built with specific flags in order for metal support to work: https://github.com/ggerganov/llama.cpp/pull/1642
> I think this is pretty great, thanks a lot for the contributions! Thanks! > On a fundamental level, this is another approach on giving suggestions to the user. Think...
Added suggested history implementation here https://github.com/mikaelmello/inquire/pull/229