Text Generation
GGUF
English
Māori
llama.cpp
abteex-ai-labs
aotearoa
general
local-first
lumynax
new-zealand
qwen
sovereign-ai
text
vllm
vllm-compatible
vllm-experimental
nvidia-nim
nim-compatible
nim-candidate
nvidia-nemo
nem
nvidia-nemo-pathway
nem-pathway
nem-convert-required
conversational
Instructions to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use AbteeXAILab/lumynax-infused-qwen3-14b-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 AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf AbteeXAILab/lumynax-infused-qwen3-14b-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 AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf AbteeXAILab/lumynax-infused-qwen3-14b-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 AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf AbteeXAILab/lumynax-infused-qwen3-14b-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 AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
Use Docker
docker model run hf.co/AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AbteeXAILab/lumynax-infused-qwen3-14b-gguf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AbteeXAILab/lumynax-infused-qwen3-14b-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
- Ollama
How to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with Ollama:
ollama run hf.co/AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
- Unsloth Studio
How to use AbteeXAILab/lumynax-infused-qwen3-14b-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 AbteeXAILab/lumynax-infused-qwen3-14b-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 AbteeXAILab/lumynax-infused-qwen3-14b-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for AbteeXAILab/lumynax-infused-qwen3-14b-gguf to start chatting
- Pi
How to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
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": "AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AbteeXAILab/lumynax-infused-qwen3-14b-gguf: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 "AbteeXAILab/lumynax-infused-qwen3-14b-gguf: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"
- Docker Model Runner
How to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with Docker Model Runner:
docker model run hf.co/AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
- Lemonade
How to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
Run and chat with the model
lemonade run user.lumynax-infused-qwen3-14b-gguf-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use AbteeXAILab/lumynax-infused-qwen3-14b-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AbteeXAILab/lumynax-infused-qwen3-14b-gguf: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 AbteeXAILab/lumynax-infused-qwen3-14b-gguf:Q4_K_M
Run Hermes
hermes
- Atomic Chat
File size: 1,771 Bytes
f27329c 1b87101 f27329c 3fae690 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | fdeb5cd638f262467f8cfa3f97d14d4071076dfbee5907ca4e3af7e50a3bd08b .gitattributes
3e17dc4cfff63e036b53d9de64bae39695ede080d3645d47f307f2df96f2d83d artifacts/release_training_summary.json
eb92796de4140811fcba8053df9a3ff009ac157d7199ec483c9c4387dc32b5ad artifacts/smoke_llama_cpp.json
b907201f7067bc9bc5e6542284eb53016b28483cf11e312c0f1d276949204507 hf_space/app.py
08ae2b26115016d681e93104330be95d580765ed960c7ad9ed473e14fd1816ad hf_space/README.md
3e78abed8cdc940c6bf1c763d81d829ec4dfe2f8b3897e5051989ef19169eaeb hf_space/requirements.txt
0936f24a380566d331661a32a5bf15d6c30f7e1dfe8905113ad5c43aa6f0e39e LICENSE.txt
6a1cccc946dc1b47995641f8bbc5b41530e6a7ae9b56d5c2bd9466d8465e0f62 merged_model/PACKAGE_STATE.txt
f3598e8ea0a94207a68ed9edce0be7ee1393cc4460116e5483e2f3c98e3d675a ollama/create_ollama_model.ps1
cae5a2d2c1e62cc465103bb451dc75122f656264fa0266b43205d6546323974f ollama/Modelfile
e6bfce74ad7368f5a96cd009e2913a63eaf5ddce475e3c0e059476d04659133d quickstart.py
500a8806e85ee9c83f3ae08420295592451379b4f8cf2d0f41c15dffeb6b81f0 Qwen3-14B-Q4_K_M.gguf
df9a6cd6af92e9dca24d4b5fac173fbbc82dcb7e250536148462034697c3ad6e README.md
e6d0b06cffec3fe0be8b1a73ab60d5041ed456e8fdb527145ca0fd7f308e555e release_export_manifest.json
2a7ca962dd79646b8470b45ec926ade0a4eb01ebdd93452e6990d8997666e378 requirements.txt
adb393e7d6bf51c04d26ebe841c3dde6d78ff8fcb0766baa590ac4d5cfb59e86 UPLOAD_TO_HF.md
2dfede0e6610c473959c963b292fcec325452acba33fd1bba21110e04933df53 VERSION.txt
dd2719d6b21a03c2d09e781d6803b07f991ac6d82ffb419240e67b825d341fa6 docs/lumynax-release-map.svg
4eba5d20b3cc60c3325d8b5be94748ea3480e008b7c5048206c0857a2995c1bf docs/lumynax-release-overview.svg
00a4c0d68b6d1132426c9c0dcaa7065b976cdd45fe1726e0e8627e7f27790bf9 docs/lumynax-runtime-flow.svg
|