Instructions to use LiteLLMs/aya-23-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LiteLLMs/aya-23-8B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("LiteLLMs/aya-23-8B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use LiteLLMs/aya-23-8B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf LiteLLMs/aya-23-8B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/LiteLLMs/aya-23-8B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use LiteLLMs/aya-23-8B-GGUF with Ollama:
ollama run hf.co/LiteLLMs/aya-23-8B-GGUF:Q4_K_M
- Unsloth Studio
How to use LiteLLMs/aya-23-8B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LiteLLMs/aya-23-8B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LiteLLMs/aya-23-8B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for LiteLLMs/aya-23-8B-GGUF to start chatting
- Docker Model Runner
How to use LiteLLMs/aya-23-8B-GGUF with Docker Model Runner:
docker model run hf.co/LiteLLMs/aya-23-8B-GGUF:Q4_K_M
- Lemonade
How to use LiteLLMs/aya-23-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull LiteLLMs/aya-23-8B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.aya-23-8B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +14 -0
- Q2_K/Q2_K-00001-of-00001.gguf +3 -0
- Q3_K_L/Q3_K_L-00001-of-00001.gguf +3 -0
- Q3_K_M/Q3_K_M-00001-of-00001.gguf +3 -0
- Q3_K_S/Q3_K_S-00001-of-00001.gguf +3 -0
- Q4_0/Q4_0-00001-of-00001.gguf +3 -0
- Q4_1/Q4_1-00001-of-00001.gguf +3 -0
- Q4_K_M/Q4_K_M-00001-of-00001.gguf +3 -0
- Q4_K_S/Q4_K_S-00001-of-00001.gguf +3 -0
- Q5_0/Q5_0-00001-of-00001.gguf +3 -0
- Q5_1/Q5_1-00001-of-00001.gguf +3 -0
- Q5_K_M/Q5_K_M-00001-of-00001.gguf +3 -0
- Q5_K_S/Q5_K_S-00001-of-00001.gguf +3 -0
- Q6_K/Q6_K-00001-of-00001.gguf +3 -0
- Q8_0/Q8_0-00001-of-00001.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,17 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Q2_K/Q2_K-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Q3_K_L/Q3_K_L-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Q3_K_M/Q3_K_M-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Q3_K_S/Q3_K_S-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Q4_0/Q4_0-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Q4_1/Q4_1-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Q4_K_M/Q4_K_M-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Q4_K_S/Q4_K_S-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Q5_0/Q5_0-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Q5_1/Q5_1-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Q5_K_M/Q5_K_M-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Q5_K_S/Q5_K_S-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Q6_K/Q6_K-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Q8_0/Q8_0-00001-of-00001.gguf filter=lfs diff=lfs merge=lfs -text
|
Q2_K/Q2_K-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0db829ad063ddd7cb9ccd6765b174377e9ce8877f1409a868a2eaffd781c24c7
|
| 3 |
+
size 3438504928
|
Q3_K_L/Q3_K_L-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7dd41d0706523405fc5e1bba45aa347e00184ef7ba5f348bc1950ae8422a291f
|
| 3 |
+
size 4527975392
|
Q3_K_M/Q3_K_M-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f8b1d524e1af96fe1b84ca62703cb6d0cd32dd4dcb01fb20cd4a6f548143dc7
|
| 3 |
+
size 4224936928
|
Q3_K_S/Q3_K_S-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2029bb3f79281a2a8927cb4755983883b51e7c5cc69d93db3ea825bf406a5b0d
|
| 3 |
+
size 3870518240
|
Q4_0/Q4_0-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5404883051b76167722ba5c77be8c22e3d0aec9afcc352aad6c0861395b58a02
|
| 3 |
+
size 4797459424
|
Q4_1/Q4_1-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83792ce50ba06e57f875623898957d5d99dc6c4ffd7113387d7708fd9a77beaa
|
| 3 |
+
size 5233667040
|
Q4_K_M/Q4_K_M-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c9c1077ea457c34c8e22e805c60effb00bac853214c8146b57ba372ed3a3830
|
| 3 |
+
size 5056981984
|
Q4_K_S/Q4_K_S-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e32a702d22d67ae84d1f1c6c6352616ed36a661d759cff429bb574fd9b26b4ef
|
| 3 |
+
size 4828916704
|
Q5_0/Q5_0-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acd975f936ced3cb9b80297c8acabeb936edad8c9c590172c5dc493e662358e8
|
| 3 |
+
size 5669874656
|
Q5_1/Q5_1-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb2e4a9cdaaab61d511a7582df0af9225d4c0e6c69ad4a986e0b7aba12ca1fef
|
| 3 |
+
size 6106082272
|
Q5_K_M/Q5_K_M-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fabfc6d5767316eee8ce250ebc90111dd3c8721fd6d93aae09748d02374444d
|
| 3 |
+
size 5803568096
|
Q5_K_S/Q5_K_S-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6c71ea8e9d6b97a6ba1875bdd204c0b7b5f4a9ad22d72edde5b1c067ced76df
|
| 3 |
+
size 5669874656
|
Q6_K/Q6_K-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:627f07cfb87b63cb2c2fd5903aceaf7f6e1904b8fd182ae863d2af8f62edaf0c
|
| 3 |
+
size 6596815840
|
Q8_0/Q8_0-00001-of-00001.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c3b47e300da948439ab1f59e6cf645a387e33aef954b560e9c54088ef6ba7b3
|
| 3 |
+
size 8541072352
|