Text Generation
GGUF
English
Māori
llama.cpp
abteex-ai-labs
aotearoa
gemma
general
local-first
lumynax
new-zealand
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
imatrix
conversational
Instructions to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf", filename="lumynax-infused-gemma4-26b-a4b-ud-q4_k_m.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-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-gemma4-26b-a4b-gguf:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-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-gemma4-26b-a4b-gguf:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-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-gemma4-26b-a4b-gguf:UD-Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-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-gemma4-26b-a4b-gguf:UD-Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-Q4_K_M
Use Docker
docker model run hf.co/AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-Q4_K_M
- LM Studio
- Jan
- vLLM
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-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-gemma4-26b-a4b-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-gemma4-26b-a4b-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-Q4_K_M
- Ollama
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf with Ollama:
ollama run hf.co/AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-Q4_K_M
- Unsloth Studio
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-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-gemma4-26b-a4b-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-gemma4-26b-a4b-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-gemma4-26b-a4b-gguf to start chatting
- Pi
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-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-gemma4-26b-a4b-gguf:UD-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-gemma4-26b-a4b-gguf:UD-Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-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-gemma4-26b-a4b-gguf:UD-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-gemma4-26b-a4b-gguf:UD-Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf with Docker Model Runner:
docker model run hf.co/AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-Q4_K_M
- Lemonade
How to use AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf:UD-Q4_K_M
Run and chat with the model
lemonade run user.lumynax-infused-gemma4-26b-a4b-gguf-UD-Q4_K_M
List all available models
lemonade list
File size: 1,698 Bytes
9543558 60ad7e5 9543558 9ac3619 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | fdeb5cd638f262467f8cfa3f97d14d4071076dfbee5907ca4e3af7e50a3bd08b .gitattributes
7e88e61bb6431de4d70a4a374997a5aaeeeb00ec89d44a625f9809a4bee20d0f LICENSE.txt
2f9caace08fb69763b38605e6c2a79a56fd21c603a7cdfd1512581ff75e9ce6c README.md
ea3bd28bb3c14339d88f612541750cbd8f0cd009fd94ed6a19c8d1c543a61dcd UPLOAD_TO_HF.md
2dfede0e6610c473959c963b292fcec325452acba33fd1bba21110e04933df53 VERSION.txt
1d99734002f8838a8ffeadd0f45ab982b47c4a1c256fca4a370f71df7885b03f artifacts/release_training_summary.json
0a45548352aeca4b5c735e6cfd94a0c643a6c65cf4b2fcccf3e199c10750f482 hf_space/README.md
bfe072541daff9b157b277fe016028d50d78d3bbaec200a81a14ddbf5b40892b hf_space/app.py
3e78abed8cdc940c6bf1c763d81d829ec4dfe2f8b3897e5051989ef19169eaeb hf_space/requirements.txt
34c746b1d50ab813e29cd46c4796e3f43c741901a582f93a67b55b9fc9687b35 lumynax-infused-gemma4-26b-a4b-ud-q4_k_m.gguf
7936326a4bf78654e1038389020cb859183a7fdfad9b8d2ca42af19c368a63b9 merged_model/PACKAGE_STATE.txt
94d0f841e0cab54907ab717d1c725761940c40b7c11df602ef0760eb7637cab3 ollama/Modelfile
c4551e9d2e1306037200d9dabb13551c3fac7f4fb0485e971ff4b34f03a58da9 ollama/create_ollama_model.ps1
402034cdf3950a7d9f6eae71888a3f4e061ecbe7159b362911283f70ac144e0a quickstart.py
753f804a248618af551dbaa32b88135cb425f39d34c7d76ba06c00df497edf7f release_export_manifest.json
2a7ca962dd79646b8470b45ec926ade0a4eb01ebdd93452e6990d8997666e378 requirements.txt
4aedb86b43d3376a00325ee6901c00e71fa88ca7e315534647877dd8f8a5ecfd docs/lumynax-release-map.svg
3be552c59f5ef259673b0bb55d9190d255c24dedbf07bb448302157eec3b33f9 docs/lumynax-release-overview.svg
c331443f8d1d2e0548f56a3035d1f1f0cc91985b6e553f05f6ee0cada83ac686 docs/lumynax-runtime-flow.svg
|