From 867973a8508673219a2eed723484fd92845504d1 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Fri, 25 Apr 2025 09:20:01 +0200 Subject: [PATCH 1/3] chore(model gallery): add soob3123_veritas-12b (#5241) Signed-off-by: Ettore Di Giacinto --- gallery/index.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gallery/index.yaml b/gallery/index.yaml index 66db118b..8d07009e 100644 --- a/gallery/index.yaml +++ b/gallery/index.yaml @@ -556,6 +556,21 @@ - filename: amoral-gemma3-1B-v2.Q4_K_M.gguf sha256: 7f2167d91409cabaf0a42e41e833a6ca055c841a37d8d829e11db81fdaed5e4c uri: huggingface://mradermacher/amoral-gemma3-1B-v2-GGUF/amoral-gemma3-1B-v2.Q4_K_M.gguf +- !!merge <<: *gemma3 + name: "soob3123_veritas-12b" + icon: https://cdn-uploads.huggingface.co/production/uploads/62f93f9477b722f1866398c2/IuhCq-5PcEbDBqXD5xnup.png + urls: + - https://huggingface.co/soob3123/Veritas-12B + - https://huggingface.co/bartowski/soob3123_Veritas-12B-GGUF + description: | + Veritas-12B emerges as a model forged in the pursuit of intellectual clarity and logical rigor. This 12B parameter model possesses superior philosophical reasoning capabilities and analytical depth, ideal for exploring complex ethical dilemmas, deconstructing arguments, and engaging in structured philosophical dialogue. Veritas-12B excels at articulating nuanced positions, identifying logical fallacies, and constructing coherent arguments grounded in reason. Expect discussions characterized by intellectual honesty, critical analysis, and a commitment to exploring ideas with precision. + overrides: + parameters: + model: soob3123_Veritas-12B-Q4_K_M.gguf + files: + - filename: soob3123_Veritas-12B-Q4_K_M.gguf + sha256: 41821d6b0dd2b81a5bddd843a5534fd64d95e75b8e9dc952340868af320d49a7 + uri: huggingface://bartowski/soob3123_Veritas-12B-GGUF/soob3123_Veritas-12B-Q4_K_M.gguf - &llama4 url: "github:mudler/LocalAI/gallery/llama3.1-instruct.yaml@master" icon: https://avatars.githubusercontent.com/u/153379578 From 5bb5da0760b326b24bda5c52a6db1c3333186150 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Fri, 25 Apr 2025 16:20:05 +0200 Subject: [PATCH 2/3] fix(ci): add clang (#5242) Signed-off-by: Ettore Di Giacinto --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48aebfb7..c0e1c051 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,7 +71,7 @@ jobs: run: | sudo apt-get update sudo apt-get install build-essential ccache upx-ucl curl ffmpeg - sudo apt-get install -y libgmock-dev + sudo apt-get install -y libgmock-dev clang curl https://repo.anaconda.com/pkgs/misc/gpgkeys/anaconda.asc | gpg --dearmor > conda.gpg && \ sudo install -o root -g root -m 644 conda.gpg /usr/share/keyrings/conda-archive-keyring.gpg && \ gpg --keyring /usr/share/keyrings/conda-archive-keyring.gpg --no-default-keyring --fingerprint 34161F5BF5EB1D4BFBBB8F0A8AEB4F8B29D82806 && \ From cae9bf13084071348d46e30f89a93debdd45e655 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Fri, 25 Apr 2025 21:32:37 +0200 Subject: [PATCH 3/3] chore(deps): bump grpcio to 1.72.0 (#5244) Signed-off-by: Ettore Di Giacinto --- backend/python/bark/requirements.txt | 2 +- backend/python/common/template/requirements.txt | 2 +- backend/python/coqui/requirements.txt | 2 +- backend/python/diffusers/requirements.txt | 2 +- backend/python/exllama2/requirements.txt | 2 +- backend/python/faster-whisper/requirements.txt | 2 +- backend/python/kokoro/requirements.txt | 2 +- backend/python/rerankers/requirements.txt | 2 +- backend/python/transformers/requirements.txt | 2 +- backend/python/vllm/requirements.txt | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/backend/python/bark/requirements.txt b/backend/python/bark/requirements.txt index 2f40b320..54b47b8e 100644 --- a/backend/python/bark/requirements.txt +++ b/backend/python/bark/requirements.txt @@ -1,4 +1,4 @@ bark==0.1.5 -grpcio==1.71.0 +grpcio==1.72.0 protobuf certifi \ No newline at end of file diff --git a/backend/python/common/template/requirements.txt b/backend/python/common/template/requirements.txt index e4d843df..16574534 100644 --- a/backend/python/common/template/requirements.txt +++ b/backend/python/common/template/requirements.txt @@ -1,3 +1,3 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf grpcio-tools \ No newline at end of file diff --git a/backend/python/coqui/requirements.txt b/backend/python/coqui/requirements.txt index 108d30ba..3c6b59b1 100644 --- a/backend/python/coqui/requirements.txt +++ b/backend/python/coqui/requirements.txt @@ -1,4 +1,4 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf certifi packaging==24.1 \ No newline at end of file diff --git a/backend/python/diffusers/requirements.txt b/backend/python/diffusers/requirements.txt index 8cfe88a7..d5af9b8f 100644 --- a/backend/python/diffusers/requirements.txt +++ b/backend/python/diffusers/requirements.txt @@ -1,5 +1,5 @@ setuptools -grpcio==1.71.0 +grpcio==1.72.0 pillow protobuf certifi diff --git a/backend/python/exllama2/requirements.txt b/backend/python/exllama2/requirements.txt index ed8ffec4..c9c8b8e9 100644 --- a/backend/python/exllama2/requirements.txt +++ b/backend/python/exllama2/requirements.txt @@ -1,4 +1,4 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf certifi wheel diff --git a/backend/python/faster-whisper/requirements.txt b/backend/python/faster-whisper/requirements.txt index e4d843df..16574534 100644 --- a/backend/python/faster-whisper/requirements.txt +++ b/backend/python/faster-whisper/requirements.txt @@ -1,3 +1,3 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf grpcio-tools \ No newline at end of file diff --git a/backend/python/kokoro/requirements.txt b/backend/python/kokoro/requirements.txt index cf0f0143..4a1e1f49 100644 --- a/backend/python/kokoro/requirements.txt +++ b/backend/python/kokoro/requirements.txt @@ -1,4 +1,4 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf phonemizer scipy diff --git a/backend/python/rerankers/requirements.txt b/backend/python/rerankers/requirements.txt index 931cb146..8277a7c1 100644 --- a/backend/python/rerankers/requirements.txt +++ b/backend/python/rerankers/requirements.txt @@ -1,3 +1,3 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf certifi \ No newline at end of file diff --git a/backend/python/transformers/requirements.txt b/backend/python/transformers/requirements.txt index 9ba6c861..ce8bfd6c 100644 --- a/backend/python/transformers/requirements.txt +++ b/backend/python/transformers/requirements.txt @@ -1,4 +1,4 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf certifi setuptools diff --git a/backend/python/vllm/requirements.txt b/backend/python/vllm/requirements.txt index f1771cc4..379c87e0 100644 --- a/backend/python/vllm/requirements.txt +++ b/backend/python/vllm/requirements.txt @@ -1,4 +1,4 @@ -grpcio==1.71.0 +grpcio==1.72.0 protobuf certifi setuptools \ No newline at end of file