How to use from
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 janhq/Jan-v2-VL-max-gguf:
# Run inference directly in the terminal:
llama cli -hf janhq/Jan-v2-VL-max-gguf:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf janhq/Jan-v2-VL-max-gguf:
# Run inference directly in the terminal:
llama cli -hf janhq/Jan-v2-VL-max-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 janhq/Jan-v2-VL-max-gguf:
# Run inference directly in the terminal:
./llama-cli -hf janhq/Jan-v2-VL-max-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 janhq/Jan-v2-VL-max-gguf:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf janhq/Jan-v2-VL-max-gguf:
Use Docker
docker model run hf.co/janhq/Jan-v2-VL-max-gguf:
Quick Links

Jan-v2-VL: Multimodal Agent for Long-Horizon Tasks

GitHub License Jan App

image

Overview

Jan-v2-VL-max extends the Jan-v2-VL family to a 30B-parameter vision–language model focused on long-horizon execution. This release scales model capacity and applies LoRA-based RLVR to improve stability over many steps with low error accumulation. For evaluation, we continue to use The Illusion of Diminishing Returns: Measuring Long-Horizon Execution in LLMs, which emphasizes execution length rather than knowledge recall.

Intended Use

Tasks where the plan and/or knowledge can be provided up front, and success hinges on stable, many-step execution with minimal drift:

  • Agentic automation & UI control: Stepwise operation in browsers/desktop apps with screenshot grounding and tool calls via Jan Browser MCP.

Model Performance

Evaluated under FP8 inference, Jan-v2-VL-max vs. Qwen3-VL-30B-A3B-Thinking shows no regressions and small gains on several tasks, with the largest improvements in long-horizon execution. Our FP8 build maintains accuracy while reducing memory footprint and latency.

image

Local Deployment

Jan Web

Hosted on Jan Web — use the model directly at chat.jan.ai

image/gif

Local Deployment

Using vLLM: We recommend vLLM for serving and inference. All reported results were run with vLLM 0.12.0. For FP8 deployment, we used llm-compressor built from source. Please pin transformers==4.57.1 for compatibility.

# Exact versions used in our evals
pip install vllm==0.12.0
pip install transformers==4.57.1
pip install "git+https://github.com/vllm-project/llm-compressor.git@1abfd9eb34a2941e82f47cbd595f1aab90280c80"
vllm serve Menlo/Jan-v2-VL-max-FP8 \
    --host 0.0.0.0 \
    --port 1234 \
    -dp 1 \
    --enable-auto-tool-choice \
    --tool-call-parser hermes \
    --reasoning-parser deepseek_r1 
    

Using llama.cpp:

llama-server --model Jan-v2-VL-max-Q8_0.gguf \
    --vision-model-path Jan-v2-VL-max-mmproj.gguf \
    --host 0.0.0.0 \
    --port 1234 \
    --jinja \
    --no-context-shift

Recommended Parameters

For optimal performance in agentic and general tasks, we recommend the following inference parameters:

temperature: 1.0
top_p: 0.95
top_k: 20
repetition_penalty: 1.0
presence_penalty: 1.5

🤝 Community & Support

📄 Citation

Updated Soon
Downloads last month
660
GGUF
Model size
31B params
Architecture
qwen3vlmoe
Hardware compatibility
Log In to add your hardware

3-bit

4-bit

5-bit

6-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for janhq/Jan-v2-VL-max-gguf

Quantized
(32)
this model

Collection including janhq/Jan-v2-VL-max-gguf

Paper for janhq/Jan-v2-VL-max-gguf