Instructions to use RekklesAI/Qwen2.5-14B-Instruct-1M-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 RekklesAI/Qwen2.5-14B-Instruct-1M-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 RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF # Run inference directly in the terminal: llama cli -hf RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF # Run inference directly in the terminal: llama cli -hf RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
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 RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF # Run inference directly in the terminal: ./llama-cli -hf RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
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 RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
Use Docker
docker model run hf.co/RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
- LM Studio
- Jan
- vLLM
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RekklesAI/Qwen2.5-14B-Instruct-1M-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": "RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
- Ollama
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF with Ollama:
ollama run hf.co/RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
- Unsloth Studio
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-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 RekklesAI/Qwen2.5-14B-Instruct-1M-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 RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF to start chatting
- Pi
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
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": "RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF with Docker Model Runner:
docker model run hf.co/RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
- Lemonade
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
Run and chat with the model
lemonade run user.Qwen2.5-14B-Instruct-1M-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-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 RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
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 RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF
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 "RekklesAI/Qwen2.5-14B-Instruct-1M-GGUF" \ --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"
Qwen2.5-14B-Instruct-1M-GGUF
This is a quantized GGUF version of Qwen2.5-14B-Instruct-1M. Converted from Safetensors using mixed precision quantization.
Model Information
This model is a GGUF conversion of the Qwen2.5-14B-Instruct-1M model, optimized for efficient inference on consumer hardware. The quantization process uses a mixed precision format combining FP16 (half-precision floating point) and F32 (single-precision floating point) to balance performance and accuracy.
Key Features
- Base Model: Qwen2.5-14B-Instruct-1M
- Quantization Format: Mixed precision (FP16 + F32)
- File Format: GGUF (GPT-Generated Unified Format)
- Context Length: 8192 tokens
- Training Data: Instruction-tuned on 1M samples
- Languages: Primarily English, with some multilingual capabilities
Usage
Optimized for efficient inference using llama.cpp or text-generation-webui.
Running with llama.cpp
./main -m Qwen2.5-14B-Instruct-1M.gguf -n 512 -p "User: How does photosynthesis work?\nAssistant:"
Deployment on Ollama
Ollama provides a simple way to run this model locally. Follow these steps to deploy Qwen2.5-14B-Instruct-1M-GGUF on Ollama:
1. Install Ollama
If you haven't installed Ollama yet, download and install it from ollama.ai.
2. Create a Modelfile
Create a file named Modelfile with the following content:
FROM qwen2.5-14b-1M.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER stop "User:"
PARAMETER stop "Assistant:"
PARAMETER repeat_penalty 1.1
SYSTEM You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature.
If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.
3. Create and Run the Model
Navigate to the directory containing your Modelfile and the GGUF file, then run:
# Create the model
ollama create qwen2.5-14b-1M -f Modelfile
# Run the model
ollama run qwen2.5-14b-1M
4. API Usage
You can also use the model via Ollama's API:
curl -X POST http://localhost:11434/api/generate -d '{
"model": "qwen2.5-14b-1M",
"prompt": "Explain quantum computing in simple terms",
"stream": false
}'
Performance Considerations
- Recommended minimum RAM: 16GB
- For optimal performance, a GPU with at least 8GB VRAM is recommended
- CPU-only inference is possible but will be significantly slower
License
This model is released under the Apache 2.0 license.
Acknowledgements
- Original model by Qwen team at Alibaba Cloud
- Quantization by RekklesAI
- Downloads last month
- 5
We're not able to determine the quantization variants.