-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moving to llama.cpp server #111
Conversation
de8f2eb
to
6b9af1c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good work, will deploy it on Mon and will also set up the GHA for image building
* configuration is now almost entirely withing the .env file * server is being build as part of container image * llama.cpp source is selected by tag * parallel execution enabled * removed separate llama_cpp_server config Signed-off-by: Jiri Podivin <[email protected]>
git checkout $LLAMACPP_VER && \ | ||
cmake -B build && \ | ||
cmake --build build --config Release -j 4 -t llama-server && \ | ||
mv ./build/bin/llama-server /bin/llama-server |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be /usr/bin/ ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's just link to /usr/bin anyway, and both are in path so it doesn't make any difference.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. But since the merge, we should use the correct path. And that is /usr/bin
https://discussion.fedoraproject.org/t/f40-change-proposal-unify-usr-bin-and-usr-sbin-system-wide/99853
Merging so I can give it a go. |
Should address: #108