From 3ff73fafbe720d882eb76aba782bb599a9dd6d47 Mon Sep 17 00:00:00 2001 From: icpp Date: Sun, 2 Feb 2025 09:59:30 -0500 Subject: [PATCH] Upgrade to llama.cpp sha 615212 All done... --- .github/workflows/cicd-mac.yml | 4 ++-- README-contributors-guide.md | 7 ++++++- README.md | 6 +++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cicd-mac.yml b/.github/workflows/cicd-mac.yml index 8fc7bc8..c383315 100644 --- a/.github/workflows/cicd-mac.yml +++ b/.github/workflows/cicd-mac.yml @@ -39,8 +39,8 @@ jobs: uses: actions/checkout@v4 with: repository: onicai/llama_cpp_onicai_fork - # ref: onicai # Specify the branch name here - ref: onicai-615212 # While working on the upgrade... + ref: onicai # Specify the branch name here + # ref: onicai-615212 # While working on the upgrade... path: src/llama_cpp_onicai_fork fetch-depth: 1 # Get just the last commit submodules: 'recursive' diff --git a/README-contributors-guide.md b/README-contributors-guide.md index 3cbed06..7c533b7 100644 --- a/README-contributors-guide.md +++ b/README-contributors-guide.md @@ -84,10 +84,15 @@ We need to rethink this logic, but for now it is ok... Do NOT merge the `onicai-` branch into the `onicai` branch, but replace it: ``` +# do the onicai branch management while master branch is checked out +git checkout master git branch -m onicai onicai- git branch -m onicai- onicai -git push origin onicai:onicai +git push --force origin onicai:onicai git push origin onicai-:onicai- +# +# Switch to the onicai branch, which now contains the version +git checkout onicai ``` ## llama_cpp_canister diff --git a/README.md b/README.md index 3c35809..b5d0d50 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,12 @@ You can try out a variety of fully on-chain LLMs at https://icgpt.onicai.com # Capabilities 🔥 - Deploy any LLM available as a gguf file. -- Our largest so far is DeepSeek-R1 1.5B (See [X](https://x.com/onicaiHQ/status/1884339580851151089)). + *(The model must be able to produce at least 1 token per update call)* + +- Our largest so far is DeepSeek-R1 1.5B (See [X](https://x.com/onicaiHQ/status/1884339580851151089)). + + # Set up The build of the wasm must be done on a `Mac` !