Instructions to use codebasic/Qwen3-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use codebasic/Qwen3-8B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="codebasic/Qwen3-8B-GGUF", filename="Qwen3-8B-F16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use codebasic/Qwen3-8B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf codebasic/Qwen3-8B-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf codebasic/Qwen3-8B-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf codebasic/Qwen3-8B-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf codebasic/Qwen3-8B-GGUF:F16
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 codebasic/Qwen3-8B-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf codebasic/Qwen3-8B-GGUF:F16
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 codebasic/Qwen3-8B-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf codebasic/Qwen3-8B-GGUF:F16
Use Docker
docker model run hf.co/codebasic/Qwen3-8B-GGUF:F16
- LM Studio
- Jan
- Ollama
How to use codebasic/Qwen3-8B-GGUF with Ollama:
ollama run hf.co/codebasic/Qwen3-8B-GGUF:F16
- Unsloth Studio new
How to use codebasic/Qwen3-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 codebasic/Qwen3-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 codebasic/Qwen3-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 codebasic/Qwen3-8B-GGUF to start chatting
- Pi new
How to use codebasic/Qwen3-8B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf codebasic/Qwen3-8B-GGUF:F16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "codebasic/Qwen3-8B-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use codebasic/Qwen3-8B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf codebasic/Qwen3-8B-GGUF:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default codebasic/Qwen3-8B-GGUF:F16
Run Hermes
hermes
- Docker Model Runner
How to use codebasic/Qwen3-8B-GGUF with Docker Model Runner:
docker model run hf.co/codebasic/Qwen3-8B-GGUF:F16
- Lemonade
How to use codebasic/Qwen3-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull codebasic/Qwen3-8B-GGUF:F16
Run and chat with the model
lemonade run user.Qwen3-8B-GGUF-F16
List all available models
lemonade list
Update README.md (#1)
Browse files- Update README.md (4d75911661d1dd272841d730de6a1eec948f5671)
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- Qwen/Qwen3-8B
|
| 5 |
+
tags:
|
| 6 |
+
- gguf
|
| 7 |
+
- llama.cpp
|
| 8 |
+
- qwen
|
| 9 |
+
- quantization
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Qwen3-8B-GGUF
|
| 13 |
+
|
| 14 |
+
## π€ μ½λλ² μ΄μ§ μ 곡
|
| 15 |
+
μ΄ λͺ¨λΈμ **μ½λλ² μ΄μ§(codebasic)**μμ GGUF ν¬λ§·μΌλ‘ λ³νΒ·λ°°ν¬νμμ΅λλ€.
|
| 16 |
+
|
| 17 |
+
μ΄ λ¦¬ν¬μ§ν 리λ [Qwen3-8B](https://huggingface.co/Qwen/Qwen3-8B) λͺ¨λΈμ μ¬λ¬ GGUF μμν λ²μ μΌλ‘ μ 곡ν©λλ€.
|
| 18 |
+
llama.cpp, text-generation-webui, koboldcpp λ± GGUF ν¬λ§·μ μ§μνλ λ€μν νκ²½μμ μ¬μ©ν μ μμ΅λλ€.
|
| 19 |
+
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
## π μ 곡 νμΌ
|
| 23 |
+
|
| 24 |
+
| νμΌλͺ
| μμν λ°©μ | λ©λͺ¨λ¦¬ μꡬλ(λλ΅) | μ€λͺ
|
|
| 25 |
+
|--------|------------|----------------------|------|
|
| 26 |
+
| `Qwen3-8B-F16.gguf` | FP16 (λΉμμν) | ~16GB | μλ³Έ FP16 κ°μ€μΉ (GPU/κ³ μ¬μ νκ²½) |
|
| 27 |
+
| `Qwen3-8B-Q8_0.gguf` | Q8_0 | ~9GB | κ³ νμ§ μμν, κ±°μ FP16 μμ€μ μ νλ |
|
| 28 |
+
|
| 29 |
+
> π‘ λ©λͺ¨λ¦¬ μꡬλμ μΆμ μΉμ΄λ©°, νκ²½μ λ°λΌ λ€λ₯Ό μ μμ΅λλ€.
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## π μ¬μ© λ°©λ²
|
| 34 |
+
|
| 35 |
+
### 1. Docker (llama.cpp Q8_0 μμ)
|
| 36 |
+
```bash
|
| 37 |
+
docker run -v /path/to/models:/models \
|
| 38 |
+
ghcr.io/ggml-org/llama.cpp:full \
|
| 39 |
+
--run -m /models/Qwen3-8B/Qwen3-8B-Q8_0.gguf \
|
| 40 |
+
-p "μΈμ΄ λͺ¨λΈ μκ°"
|