Skip to content

Commit ed7f03e

Browse files
authored
Merge branch 'master' into feat-request-middleware
2 parents 0776abe + a60b9b7 commit ed7f03e

File tree

19 files changed

+70
-18
lines changed

19 files changed

+70
-18
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DETECT_LIBS?=true
88
# llama.cpp versions
99
GOLLAMA_REPO?=https://github.com/go-skynet/go-llama.cpp
1010
GOLLAMA_VERSION?=2b57a8ae43e4699d3dc5d1496a1ccd42922993be
11-
CPPLLAMA_VERSION?=755a9b2bf00fbae988e03a47e852b66eaddd113a
11+
CPPLLAMA_VERSION?=9e041024481f6b249ab8918e18b9477f873b5a5e
1212

1313
# go-rwkv version
1414
RWKV_REPO?=https://github.com/donomii/go-rwkv.cpp
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
accelerate
22
auto-gptq==0.7.1
3-
grpcio==1.66.2
3+
grpcio==1.67.0
44
protobuf
55
certifi
66
transformers

backend/python/bark/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
bark==0.1.5
2-
grpcio==1.66.2
2+
grpcio==1.67.0
33
protobuf
44
certifi
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf

backend/python/coqui/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
coqui-tts
2-
grpcio==1.66.2
2+
grpcio==1.67.0
33
protobuf
44
certifi
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setuptools
2-
grpcio==1.66.2
2+
grpcio==1.67.0
33
pillow
44
protobuf
55
certifi

backend/python/exllama2/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi
44
wheel

backend/python/mamba/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi

backend/python/openvoice/requirements-intel.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
intel-extension-for-pytorch
33
torch
44
optimum[openvino]
5-
grpcio==1.66.2
5+
grpcio==1.67.0
66
protobuf
77
librosa==0.9.1
88
faster-whisper==1.0.3

backend/python/openvoice/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
librosa
44
faster-whisper
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi
44
llvmlite==0.43.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi

backend/python/sentencetransformers/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi
44
datasets
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
scipy==1.14.0
44
certifi
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi
44
setuptools==69.5.1 # https://github.com/mudler/LocalAI/issues/2406
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi

backend/python/vllm/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if [ "x${BUILD_TYPE}" == "x" ] && [ "x${FROM_SOURCE}" == "xtrue" ]; then
2222
git clone https://github.com/vllm-project/vllm
2323
fi
2424
pushd vllm
25-
uv pip install wheel packaging ninja "setuptools>=49.4.0" numpy typing-extensions pillow setuptools-scm grpcio==1.66.2 protobuf bitsandbytes
25+
uv pip install wheel packaging ninja "setuptools>=49.4.0" numpy typing-extensions pillow setuptools-scm grpcio==1.67.0 protobuf bitsandbytes
2626
uv pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/cpu
2727
VLLM_TARGET_DEVICE=cpu python setup.py install
2828
popd

backend/python/vllm/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.66.2
1+
grpcio==1.67.0
22
protobuf
33
certifi
44
setuptools

gallery/index.yaml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,26 @@
572572
- filename: EdgeRunner-Command-Nested.i1-Q4_K_M.gguf
573573
sha256: a1cc4d2b601dc20e58cbb549bd3e9bc460995840c0aaf1cd3c1cb5414c900ac7
574574
uri: huggingface://mradermacher/EdgeRunner-Command-Nested-i1-GGUF/EdgeRunner-Command-Nested.i1-Q4_K_M.gguf
575+
- !!merge <<: *qwen25
576+
name: "tsunami-0.5x-7b-instruct-i1"
577+
icon: https://huggingface.co/Tsunami-th/Tsunami-0.5x-7B-Instruct/resolve/main/Tsunami.webp
578+
urls:
579+
- https://huggingface.co/Tsunami-th/Tsunami-0.5x-7B-Instruct
580+
- https://huggingface.co/mradermacher/Tsunami-0.5x-7B-Instruct-i1-GGUF
581+
description: |
582+
TSUNAMI: Transformative Semantic Understanding and Natural Augmentation Model for Intelligence.
583+
584+
TSUNAMI full name was created by ChatGPT.
585+
infomation
586+
587+
Tsunami-0.5x-7B-Instruct is Thai Large Language Model that fine-tuned from Qwen2.5-7B around 100,000 rows in Thai dataset.
588+
overrides:
589+
parameters:
590+
model: Tsunami-0.5x-7B-Instruct.i1-Q4_K_M.gguf
591+
files:
592+
- filename: Tsunami-0.5x-7B-Instruct.i1-Q4_K_M.gguf
593+
sha256: 22e2003ecec7f1e91f2e9aaec334613c0f37fb3000d0e628b5a9980e53322fa7
594+
uri: huggingface://mradermacher/Tsunami-0.5x-7B-Instruct-i1-GGUF/Tsunami-0.5x-7B-Instruct.i1-Q4_K_M.gguf
575595
- &archfunct
576596
license: apache-2.0
577597
tags:
@@ -1620,6 +1640,38 @@
16201640
- filename: Doctoraifinetune-3.1-8B.i1-Q4_K_M.gguf
16211641
sha256: 282456efcb6c7e54d34ac25ae7fc022a94152ed77281ae4625b9628091e0a3d6
16221642
uri: huggingface://mradermacher/Doctoraifinetune-3.1-8B-i1-GGUF/Doctoraifinetune-3.1-8B.i1-Q4_K_M.gguf
1643+
- !!merge <<: *llama31
1644+
name: "astral-fusion-neural-happy-l3.1-8b"
1645+
urls:
1646+
- https://huggingface.co/ZeroXClem/Astral-Fusion-Neural-Happy-L3.1-8B
1647+
- https://huggingface.co/mradermacher/Astral-Fusion-Neural-Happy-L3.1-8B-GGUF
1648+
description: |
1649+
Astral-Fusion-Neural-Happy-L3.1-8B is a celestial blend of magic, creativity, and dynamic storytelling. Designed to excel in instruction-following, immersive roleplaying, and magical narrative generation, this model is a fusion of the finest qualities from Astral-Fusion, NIHAPPY, and NeuralMahou. ✨🚀
1650+
1651+
This model is perfect for anyone seeking a cosmic narrative experience, with the ability to generate both precise instructional content and fantastical stories in one cohesive framework. Whether you're crafting immersive stories, creating AI roleplaying characters, or working on interactive storytelling, this model brings out the magic. 🌟
1652+
overrides:
1653+
parameters:
1654+
model: Astral-Fusion-Neural-Happy-L3.1-8B.Q4_K_M.gguf
1655+
files:
1656+
- filename: Astral-Fusion-Neural-Happy-L3.1-8B.Q4_K_M.gguf
1657+
sha256: 14a3b07c1723ef1ca24f99382254b1227d95974541e23792a4e7ff621896055d
1658+
uri: huggingface://mradermacher/Astral-Fusion-Neural-Happy-L3.1-8B-GGUF/Astral-Fusion-Neural-Happy-L3.1-8B.Q4_K_M.gguf
1659+
- !!merge <<: *llama31
1660+
name: "mahou-1.5-llama3.1-70b-i1"
1661+
url: "github:mudler/LocalAI/gallery/chatml.yaml@master"
1662+
icon: https://huggingface.co/flammenai/Mahou-1.0-mistral-7B/resolve/main/mahou1.png
1663+
urls:
1664+
- https://huggingface.co/flammenai/Mahou-1.5-llama3.1-70B
1665+
- https://huggingface.co/mradermacher/Mahou-1.5-llama3.1-70B-i1-GGUF
1666+
description: |
1667+
Mahou is designed to provide short messages in a conversational context. It is capable of casual conversation and character roleplay.
1668+
overrides:
1669+
parameters:
1670+
model: Mahou-1.5-llama3.1-70B.i1-Q4_K_M.gguf
1671+
files:
1672+
- filename: Mahou-1.5-llama3.1-70B.i1-Q4_K_M.gguf
1673+
sha256: c2711c4c9c8d011edbeaa391b4418d433e273a318d1de3dbdda9b85baf4996f2
1674+
uri: huggingface://mradermacher/Mahou-1.5-llama3.1-70B-i1-GGUF/Mahou-1.5-llama3.1-70B.i1-Q4_K_M.gguf
16231675
- &deepseek
16241676
## Deepseek
16251677
url: "github:mudler/LocalAI/gallery/deepseek.yaml@master"

0 commit comments

Comments
 (0)