Instructions to use l3utterfly/L3-8B-Stheno-v3.2-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use l3utterfly/L3-8B-Stheno-v3.2-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="l3utterfly/L3-8B-Stheno-v3.2-gguf", filename="L3-8B-Stheno-v3.2-Q2_K.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use l3utterfly/L3-8B-Stheno-v3.2-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 l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf l3utterfly/L3-8B-Stheno-v3.2-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 l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf l3utterfly/L3-8B-Stheno-v3.2-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 l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf l3utterfly/L3-8B-Stheno-v3.2-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 l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M
Use Docker
docker model run hf.co/l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use l3utterfly/L3-8B-Stheno-v3.2-gguf with Ollama:
ollama run hf.co/l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M
- Unsloth Studio
How to use l3utterfly/L3-8B-Stheno-v3.2-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 l3utterfly/L3-8B-Stheno-v3.2-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 l3utterfly/L3-8B-Stheno-v3.2-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for l3utterfly/L3-8B-Stheno-v3.2-gguf to start chatting
- Atomic Chat new
- Docker Model Runner
How to use l3utterfly/L3-8B-Stheno-v3.2-gguf with Docker Model Runner:
docker model run hf.co/l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M
- Lemonade
How to use l3utterfly/L3-8B-Stheno-v3.2-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull l3utterfly/L3-8B-Stheno-v3.2-gguf:Q4_K_M
Run and chat with the model
lemonade run user.L3-8B-Stheno-v3.2-gguf-Q4_K_M
List all available models
lemonade list
Commit ·
430c5f6
1
Parent(s): 0257818
Add quantised GGUF files
Browse files- .gitattributes +1 -0
- L3-8B-Stheno-v3.2-Q2_K.gguf +3 -0
- L3-8B-Stheno-v3.2-Q4_0_4_4.gguf +3 -0
- L3-8B-Stheno-v3.2-Q4_0_4_8.gguf +3 -0
- L3-8B-Stheno-v3.2-Q4_0_8_8.gguf +3 -0
- L3-8B-Stheno-v3.2-Q4_K_M.gguf +3 -0
- L3-8B-Stheno-v3.2-Q6_K.gguf +3 -0
- L3-8B-Stheno-v3.2-Q8_0.gguf +3 -0
- L3-8B-Stheno-v3.2-f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
L3-8B-Stheno-v3.2-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a675a1ec986952c1bcee6b1deaf6be454fb7ba77aa424e0b887c6a9c947070b8
|
| 3 |
+
size 3179131680
|
L3-8B-Stheno-v3.2-Q4_0_4_4.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26d5bff85ed25d30127beb49021e420742714226df55f60055025658aa44e459
|
| 3 |
+
size 4661211936
|
L3-8B-Stheno-v3.2-Q4_0_4_8.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01942d5dfc7f45cf422323ed4e99bfb23094a9e922b35372109b45901c98ec91
|
| 3 |
+
size 4661211936
|
L3-8B-Stheno-v3.2-Q4_0_8_8.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48ae914942a70e66593ac375bd0a5f361c6eff42b07e0c329aa751425c58bc4d
|
| 3 |
+
size 4661211936
|
L3-8B-Stheno-v3.2-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56d91f27057ca78562e6cac71391531ae447b6aed409930cd99f38a4a71b7122
|
| 3 |
+
size 4920734496
|
L3-8B-Stheno-v3.2-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:caaa54094584a53fe2a54ffba9de53c01e3ce80ee130e72cf3d16fa5512f7391
|
| 3 |
+
size 6596006688
|
L3-8B-Stheno-v3.2-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:405dd1b7aa09d123b78fd6263fb54f4f5b9c5690f5e2b78a424a0f133c778eac
|
| 3 |
+
size 8540771104
|
L3-8B-Stheno-v3.2-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62957a392fd80ff435bfd8b5b8171f54b17995ae5b3cdf5a95f3e7ce19801316
|
| 3 |
+
size 16068891424
|