You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork#syncing-a-fork-branch-from-the-web-ui) for more details.
4
+
5
+
1. On the GitHub UI, create a new branch `repo-sync`, if the branch doesn't exist already.
6
+
7
+
2. Click on the "Sync fork" button and then click on the "Update branch" button. This will import all the commits from the upstream repo.
8
+
9
+
3. Create a local branch `repo-sync` and pull the contents from the remote `repo-sync` branch.
10
+
11
+
4. Solve for any conflicts if they arise. Otherwise, proceed to the next step.
12
+
13
+
5. Since changes have probably been made to the vendor libraries (`llama_cpp`, `kompute`), we need to recompile the `llama_cpp` package. Navigate to the `vendor/llama.cpp` folder and clean the build cache:
14
+
15
+
```
16
+
make clean
17
+
```
18
+
6. Navigate back to the root directory and type the following to recompile the `llama_cpp` package and build the dependenies again:
19
+
20
+
```
21
+
make deps && make build
22
+
```
23
+
7. Launch the `llama_cpp_python` server using the following command:
0 commit comments