Instructions to use Azure99/Blossom-V7-9B-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 Azure99/Blossom-V7-9B-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 Azure99/Blossom-V7-9B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Azure99/Blossom-V7-9B-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 Azure99/Blossom-V7-9B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Azure99/Blossom-V7-9B-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 Azure99/Blossom-V7-9B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Azure99/Blossom-V7-9B-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 Azure99/Blossom-V7-9B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Azure99/Blossom-V7-9B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Azure99/Blossom-V7-9B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Azure99/Blossom-V7-9B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Azure99/Blossom-V7-9B-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": "Azure99/Blossom-V7-9B-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Azure99/Blossom-V7-9B-GGUF:Q4_K_M
- Ollama
How to use Azure99/Blossom-V7-9B-GGUF with Ollama:
ollama run hf.co/Azure99/Blossom-V7-9B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use Azure99/Blossom-V7-9B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Azure99/Blossom-V7-9B-GGUF: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": "Azure99/Blossom-V7-9B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Azure99/Blossom-V7-9B-GGUF with Docker Model Runner:
docker model run hf.co/Azure99/Blossom-V7-9B-GGUF:Q4_K_M
- Lemonade
How to use Azure99/Blossom-V7-9B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Azure99/Blossom-V7-9B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Blossom-V7-9B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Azure99/Blossom-V7-9B-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 Azure99/Blossom-V7-9B-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 Azure99/Blossom-V7-9B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Azure99/Blossom-V7-9B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Azure99/Blossom-V7-9B-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 "Azure99/Blossom-V7-9B-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"
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 "Azure99/Blossom-V7-9B-GGUF:" \
--custom-provider-id llama-cpp \
--custom-compatibility openai \
--custom-text-input \
--accept-risk \
--skip-healthRun OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"Blossom-V7-9B-GGUF
Blossom-V7 is a family of open-weight, general-purpose multimodal models designed for local deployment. It combines efficient adaptive thinking, tool use with interleaved thinking, and image understanding. It covers everyday conversation, world knowledge, mathematics and reasoning, coding, web development, and data visualization, and supports agentic workflows through tool use.
Key Features
- Efficient Adaptive Thinking: Uses always-on adaptive thinking to scale reasoning depth to task difficulty, delivering high-quality results with reasoning traces about one-quarter as long as those of Qwen3.5 and one-fifth as long as those of Qwen3.6.
- Tool Use with Interleaved Thinking: Reasons and makes decisions before every tool call, enabling strong performance in agentic tasks.
- Image Understanding: Understands image inputs alongside text.
- Long Context: Handles up to 262,144 tokens (256K); use 131,072 tokens (128K) for best results.
- Faster Inference with MTP: Supports speculative decoding via Multi-Token Prediction (MTP) in both vLLM and llama.cpp.
Important: Blossom-V7 uses a custom chat template that differs from Qwen3.5's native template. Always use the bundled
chat_template; do not replace it with a Qwen3.5 chat template or combine the two templates.
Model Variants
| Model | Resources | Base Model |
|---|---|---|
| Blossom-V7-27B | Demo GGUF | Qwen3.5-27B |
| Blossom-V7-35B-A3B | Demo GGUF | Qwen3.5-35B-A3B |
| Blossom-V7-9B | Demo GGUF | Qwen3.5-9B |
Select a variant based on your quality target, inference hardware, and memory budget:
- 27B: The most capable dense option, intended for GPU deployments where the model's weights fit entirely in GPU memory.
- 35B-A3B: The throughput-oriented option for CPU or hybrid CPU/GPU inference, offering a practical balance of quality and speed even with partial CPU offload.
- 9B: The lowest-resource option for memory-constrained GPUs, mobile devices, and lighter workloads.
Post-Training
Blossom-V7 is post-trained for general assistant use across everyday conversation, world knowledge, mathematics and reasoning, coding, web development, and data visualization.
The data pipeline uses BlossomData, our open-source framework for flexible, scalable data processing and synthesis. Data is filtered with LLM-as-Judge review and, when applicable, Agent-as-Judge verification. Agent-as-Judge runs in AgentBox, our open-source work environment for AI agents, and uses search, browser interaction, screenshot capture, and code execution as needed. Samples involving web development and data visualization receive additional screening for functionality, usability, and visual quality.
The training data will be released as open source in a future update.
Multi-turn & Reasoning Replay
For multi-turn conversations, always replay the assistant's reasoning together with its answer. Omitting prior reasoning can significantly degrade model performance in subsequent turns.
After initializing the OpenAI-compatible client shown in either server example below, append the complete assistant message rather than rebuilding it from role and content:
messages = [{"role": "user", "content": "Explain why the sky is blue."}]
response = client.chat.completions.create(model="blossom-v7", messages=messages)
messages.append(response.choices[0].message.model_dump(exclude_none=True))
messages.append({"role": "user", "content": "Now explain it with an analogy."})
response = client.chat.completions.create(model="blossom-v7", messages=messages)
This preserves vLLM's reasoning field, llama.cpp's reasoning_content field, and any tool calls. Configure agent frameworks to retain the complete assistant message in history.
Usage
The examples below use Blossom-V7-27B. To switch variants, set MODEL_ID to the corresponding Safetensors repository for Transformers or vLLM, or to the GGUF repository for llama.cpp.
Recommended Sampling
The recommended settings are temperature=1.0, top_p=0.95, top_k=50, and repetition_penalty=1.0. The first three are included in generation_config.json and the GGUF metadata, while all three runtimes default to repetition_penalty=1.0. In most cases, leave them unset.
Transformers
Install PyTorch for your hardware, then install:
pip install -U "transformers>=5.12.1" accelerate
This text-only path skips the vision encoder:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
MODEL_ID = "Azure99/Blossom-V7-27B"
tokenizer = AutoTokenizer.from_pretrained(MODEL_ID)
model = AutoModelForCausalLM.from_pretrained(
MODEL_ID,
dtype=torch.bfloat16,
device_map="auto",
)
messages = [
{"role": "user", "content": "Explain why the sky is blue in simple terms."}
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
with torch.inference_mode():
generated_ids = model.generate(
**inputs,
max_new_tokens=2048,
)
generated_ids = generated_ids[:, inputs["input_ids"].shape[1]:]
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)
vLLM
Install vLLM and the OpenAI client:
pip install -U "vllm>=0.26.0" openai
Start an OpenAI-compatible server:
MODEL_ID=Azure99/Blossom-V7-27B
vllm serve "$MODEL_ID" \
--served-model-name blossom-v7 \
--max-model-len 131072 \
--gpu-memory-utilization 0.95 \
--reasoning-parser qwen3 \
--enable-auto-tool-choice \
--tool-call-parser qwen3_coder \
--enable-prefix-caching \
--speculative-config '{"method":"mtp","num_speculative_tokens":1}'
The tokenizer includes the full chat template for multimodal input, reasoning, and tool calls, and vLLM loads generation_config.json by default. Add --tensor-parallel-size N for multi-GPU serving. Set --max-model-len 262144 if memory allows. MTP is optional; remove --speculative-config to disable it.
Call the server with an image URL using the OpenAI client. vLLM returns parsed reasoning in message.reasoning:
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")
IMAGE_URL = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/pipeline-cat-chonk.jpeg"
response = client.chat.completions.create(
model="blossom-v7",
messages=[
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {"url": IMAGE_URL},
},
{"type": "text", "text": "Describe this image briefly."},
],
}
],
max_completion_tokens=512,
)
message = response.choices[0].message
print("Reasoning:", getattr(message, "reasoning", None))
print("Answer:", message.content)
llama.cpp (GGUF)
For GGUF inference, use the matching GGUF repository with a current llama.cpp build. Use the embedded chat template; do not pass --chat-template or --chat-template-file. Keep --reasoning on and --reasoning-format deepseek enabled as shown below.
Ollama is not recommended because its current chat implementation does not correctly preserve Blossom's template behavior.
MODEL_ID=Azure99/Blossom-V7-27B-GGUF
llama-server \
-hf "${MODEL_ID}:Q4_K_M" \
--alias blossom-v7 \
--ctx-size 131072 \
--parallel 1 \
--n-gpu-layers all \
--flash-attn on \
--spec-type draft-mtp \
--spec-draft-n-max 1 \
--reasoning on \
--reasoning-format deepseek \
--min-p 0
-hf loads the Q4_K_M model and its embedded chat template, and automatically downloads a multimodal projector from the same repository. --min-p 0 disables llama.cpp's default min-p sampler. Set --ctx-size 262144 if memory allows. MTP is optional; remove --spec-type and --spec-draft-n-max to disable it.
With the parsing flags above, llama.cpp returns reasoning in message.reasoning_content and tool calls in message.tool_calls.
Call the server with the OpenAI client:
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8080/v1", api_key="no-key")
response = client.chat.completions.create(
model="blossom-v7",
messages=[{"role": "user", "content": "Find an elegant proof that there are infinitely many primes."}],
max_tokens=2048,
)
message = response.choices[0].message
print("Reasoning:", getattr(message, "reasoning_content", None))
print("Answer:", message.content)
License
Blossom-V7 is released under the Apache License 2.0.
- Downloads last month
- 777
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp# Start a local OpenAI-compatible server: llama serve -hf Azure99/Blossom-V7-9B-GGUF: