Conversation
Summary of ChangesHello @krissetto, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request updates the llama.cpp submodule to the latest commit, bringing in the newest changes and improvements from the upstream llama.cpp project. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
doringeman
left a comment
There was a problem hiding this comment.
FWIW The lint failure if now fixed on main.
It doesn't work for me ⬇️ .
make -C llamacpp clean
make -C llamacpp build
MODEL_RUNNER_PORT=8080 make run LOCAL_LLAMA=1
I see:
Initialization for llama.cpp backend runner with model sha256:9398339cb0d3b150931212377c16d2a105ddce053ec187e4397ba6e10f3ea112 in completion mode failed: llama.cpp terminated unexpectedly: llama.cpp failed: opt/homebrew/opt/openssl@3/lib/libssl.3.dylib
Referenced from: <D357292E-FE55-331D-8B5D-D9BBBF5A6800> /Users/dorin/workspace/model-runner-3/llamacpp/install/bin/com.docker.llama-server
Reason: tried: '/opt/homebrew/opt/openssl@3/lib/libssl.3.dylib' (file system sandbox blocked mmap() of '/opt/homebrew/Cellar/openssl@3/3.6.0/lib/libssl.3.dylib'), '/System/Volumes/Preboot/Cryptexes/OS/opt/homebrew/opt/openssl@3/lib/libssl.3.dylib' (no such file), '/opt/homebrew/opt/openssl@3/lib/libssl.3.dylib' (file system sandbox blocked mmap() of '/opt/homebrew/Cellar/openssl@3/3.6.0/lib/libssl.3.dylib'), '/opt/homebrew/Cellar/openssl@3/3.6.0/lib/libssl.3.dylib' (file system sandbox blocked mmap() of '/opt/homebrew/Cellar/openssl@3/3.6.0/lib/libssl.3.dylib'), '/System/Volumes/Preboot/Cryptexes/OS/opt/homebrew/Cellar/openssl@3/3.6.0/lib/libssl.3.dylib' (no such file), '/opt/homebrew/Cellar/openssl@3/3.6.0/lib/libssl.3.dylib' (file system sandbox blocked mmap() of '/opt/homebrew/Cellar/openssl@3/3.6.0/lib/libssl.3.dylib')
It seems to be due to ggml-org/llama.cpp@516a4ca. I think changing every DLLAMA_CURL=OFF to DLLAMA_OPENSSL=OFF.
|
I'll rebase on main for the linter issue. Huh i didn't notice the error because i used docker to build (and on linux). Will TAL |
88c3a68 to
dfc5f56
Compare
doringeman
left a comment
There was a problem hiding this comment.
Thanks!
LMK if you want to change these as well, otherwise I can do it:
$ grep -rn "DLLAMA_CURL" --exclude-dir=./llamacpp/native/vendor
./llamacpp/native/rocm.Dockerfile:35: -DLLAMA_CURL=OFF \
./llamacpp/native/musa.Dockerfile:32: -DLLAMA_CURL=OFF \
./llamacpp/native/generic.Dockerfile:35: -DLLAMA_CURL=OFF \
./llamacpp/native/cuda.Dockerfile:36: -DLLAMA_CURL=OFF \
./llamacpp/native/cann.Dockerfile:33: -DLLAMA_CURL=OFF \
Signed-off-by: Christopher Petito <chrisjpetito@gmail.com>
dfc5f56 to
15baf06
Compare
|
If i understood correctly, I think we could just remove Let me know if we prefer to do otherwise and I'll change it |
|
They also removed |
No description provided.