Instructions to use bluejude10/Smoothie-Qwen3-8B-Original with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bluejude10/Smoothie-Qwen3-8B-Original with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bluejude10/Smoothie-Qwen3-8B-Original") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bluejude10/Smoothie-Qwen3-8B-Original", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use bluejude10/Smoothie-Qwen3-8B-Original 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 bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M # Run inference directly in the terminal: llama cli -hf bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M # Run inference directly in the terminal: llama cli -hf bluejude10/Smoothie-Qwen3-8B-Original: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 bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bluejude10/Smoothie-Qwen3-8B-Original: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 bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
Use Docker
docker model run hf.co/bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bluejude10/Smoothie-Qwen3-8B-Original with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bluejude10/Smoothie-Qwen3-8B-Original" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bluejude10/Smoothie-Qwen3-8B-Original", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
- SGLang
How to use bluejude10/Smoothie-Qwen3-8B-Original with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "bluejude10/Smoothie-Qwen3-8B-Original" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bluejude10/Smoothie-Qwen3-8B-Original", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "bluejude10/Smoothie-Qwen3-8B-Original" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bluejude10/Smoothie-Qwen3-8B-Original", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use bluejude10/Smoothie-Qwen3-8B-Original with Ollama:
ollama run hf.co/bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
- Unsloth Desktop
- Pi
How to use bluejude10/Smoothie-Qwen3-8B-Original with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use bluejude10/Smoothie-Qwen3-8B-Original with Docker Model Runner:
docker model run hf.co/bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
- Lemonade
How to use bluejude10/Smoothie-Qwen3-8B-Original with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
Run and chat with the model
lemonade run user.Smoothie-Qwen3-8B-Original-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use bluejude10/Smoothie-Qwen3-8B-Original with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
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 bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use bluejude10/Smoothie-Qwen3-8B-Original with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "bluejude10/Smoothie-Qwen3-8B-Original:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Smoothie-Qwen3-8B-Original
ํ์ธํ๋ ์ ์๋ณธ ๋ชจ๋ธ (๋น๊ต ํ ์คํธ์ฉ)
Original Baseline Model for Comparison Testing
๐ฏ ๋ชจ๋ธ ๊ฐ์
๋ณธ ๋ชจ๋ธ์ bluejude10/Smoothie-Qwen3-8B-DTRO-Edition์ ํ์ธํ๋ ์ ์๋ณธ ๋ชจ๋ธ์ ๋๋ค. (๋น๊ต๋ฅผ ์ํด์ smoothie ๋ชจ๋ธ์ q4km์ผ๋ก ๋ณํํ ๋ชจ๋ธ์ ๋๋ค.)
์ฉ๋
- โ ํ์ธํ๋ ํจ๊ณผ ๋น๊ต: ํ์ธํ๋ ์ ํ ์ฑ๋ฅ ์ฐจ์ด ์ธก์
- โ ๋ฒ ์ด์ค๋ผ์ธ ํ ์คํธ: ์๋ณธ ๋ชจ๋ธ์ ๊ธฐ๋ณธ ์ฑ๋ฅ ํ์ธ
- โ A/B ํ ์คํธ: ๋์ผํ ์ง๋ฌธ์ ๋ํ ๋ต๋ณ ํ์ง ๋น๊ต
๐ ์ฑ๋ฅ ๋น๊ต
ํ์ธํ๋ ๋ฒ์ ๊ณผ์ ์์ธ ๋น๊ต๋ ์ฌ๊ธฐ๋ฅผ ์ฐธ์กฐํ์ธ์.
| ๋น๊ต ํญ๋ชฉ | ์๋ณธ ๋ชจ๋ธ (๋ณธ ๋ชจ๋ธ) | ํ์ธํ๋ ๋ชจ๋ธ |
|---|---|---|
| ์ฅ์น ๋ช ์นญ | ์ผ๋ฐ ๋ช ์นญ (HSCB, SCADA) | ์์ธ ๋ช ์นญ (K50, DCP2, S-RTU) |
| ๋ถ์ ๊น์ด | ์ ๊ธฐ๊ณตํ ์๋ก | ์์คํ ๋ก์ง ๋ฐ ์ํ์ค |
| ์ค์ฉ์ฑ | ๊ต์ก์ฉ | ํ์ฅ ์ ๋ฌธ๊ฐ์ฉ |
๐ ์ฌ์ฉ๋ฒ
Ollama
# ๋ชจ๋ธ ๋ค์ด๋ก๋
ollama pull bluejude10/smoothie-qwen3-8b-original
# ์คํ
ollama run bluejude10/smoothie-qwen3-8b-original
llama.cpp
# GGUF ํ์ผ ๋ค์ด๋ก๋
wget https://huggingface.co/bluejude10/Smoothie-Qwen3-8B-Original/resolve/main/Smoothie-Qwen3-8B-Original-Q4_K_M.gguf
# ์คํ
./llama-cli -m Smoothie-Qwen3-8B-Original-Q4_K_M.gguf -p "PLC ํต์ ์ฅ์ ์ ์กฐ์น ๋ฐฉ๋ฒ์?"
๐ง ๋ชจ๋ธ ์์ธ
- ๋ฒ ์ด์ค ๋ชจ๋ธ: dnotitia/Smoothie-Qwen3-8B
- ์์ํ: Q4_K_M (5.0GB)
- ํ์ธํ๋: ์์ (์๋ณธ ๊ทธ๋๋ก)
- ์ธ์ด: ํ๊ตญ์ด ์ต์ ํ
๐ ๊ด๋ จ ๋ชจ๋ธ
- ํ์ธํ๋ ๋ฒ์ : bluejude10/Smoothie-Qwen3-8B-DTRO-Edition
- ๋๊ตฌ๊ตํต๊ณต์ฌ 3ํธ์ ์ ๋ ฅ์ค๋น ์ ๋ฌธ๊ฐ ๋ชจ๋ธ
- 1,273๊ฑด QnA ๋ฐ์ดํฐ๋ก ํ์ธํ๋
- Gemma-3n-4EB ๋๋น ์ฐ์ํ ์ฑ๋ฅ
๐ ๋ผ์ด์ ์ค
- ๋ผ์ด์ ์ค: Apache 2.0
- ๋ฒ ์ด์ค ๋ชจ๋ธ: dnotitia/Smoothie-Qwen3-8B ๋ผ์ด์ ์ค ์ค์
๐ค ๊ฐ๋ฐ์
- ์ฑ๋ช : ๊ฐ๋์ฐ
- GitHub: @aremany
- HuggingFace: @bluejude10
- Email: bluejude10@naver.com
๐ ๋ฒ์ ํ์คํ ๋ฆฌ
v1.0 (2026-01-11)
- โ ์ด๊ธฐ ๋ฆด๋ฆฌ์ฆ
- โ Q4_K_M GGUF ๋ณํ
- โ Ollama ์ง์
- Downloads last month
- 18
4-bit