-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update image to support usage info (#81)
* fix: update image to support usage info Signed-off-by: Jeff MAURY <[email protected]> * fix: use rebase instead of apply Signed-off-by: Jeff MAURY <[email protected]> * fix: fix setup file Signed-off-by: Jeff MAURY <[email protected]> * fix: add gitignore Signed-off-by: Jeff MAURY <[email protected]> * fix: update git info Signed-off-by: Jeff MAURY <[email protected]> --------- Signed-off-by: Jeff MAURY <[email protected]>
- Loading branch information
Showing
10 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,13 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install -y qemu-user-static | ||
- name: Clone llama-cpp-python | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Podman Desktop team" | ||
cd chat | ||
./setup.sh | ||
- name: Build Playground Image | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,13 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install -y qemu-user-static | ||
- name: Clone llama-cpp-python | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Podman Desktop team" | ||
cd chat | ||
./setup.sh | ||
- name: Build Playground Image | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,13 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install -y qemu-user-static | ||
- name: Clone llama-cpp-python | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Podman Desktop team" | ||
cd chat | ||
./setup.sh | ||
- name: Build Playground Image | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
|
@@ -130,4 +137,4 @@ jobs: | |
with: | ||
tag: ${{ needs.tag.outputs.githubTag }} | ||
name: ${{ needs.tag.outputs.githubTag }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
llama-cpp-python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
llama-cpp-python[server]==0.3.2 | ||
./llama-cpp-python[server] | ||
pip==24.3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
git clone https://github.com/abetlen/llama-cpp-python --no-checkout --recurse-submodules | ||
cd llama-cpp-python | ||
git checkout v0.3.2 | ||
git submodule update | ||
git fetch origin pull/1552/head | ||
git rebase ffc47e5a95cf31fe6d9d6d7953d5eb17fdcc8513 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters