Model reference · open weights
ZDTaichu5.0 is an open-weight language model from TaichuAI. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | TaichuAI |
|---|---|
| Type | Language models |
| Task | Vision + text |
| Parameters (lead) | 9.8B |
| Released | 2026-09-04 |
| Popularity | 1k downloads / month |
| Licence | Unknown |
About
Project Page | GitHub | ModelScope
ZDTaichu5.0-9B is a multimodal foundation model for general visual understanding, spatial reasoning, agentic tool use, and embodied-AI research. It combines a Qwen3.5-9B language backbone with a C-RADIOv4-H vision encoder, supports text, images and videos with any-resolution visual input.
Within the 10B-scale general-purpose VLMs compared in this release blog, ZDTaichu5.0-9B retains first-tier general visual understanding while supporting spatial reasoning, high-level embodied VLM reasoning, and agent tasks under the reported evaluation settings. Rather than trading broad visual competence for specialization, it layers a more comprehensive spatial, embodied, and agent capability profile on top of a strong general-vision foundation.
The model accepts text, one or more images, and video. It is designed for:
More demos and showcases are provided at Project Page.
| Item | Specification |
|---|---|
| Model type | Multimodal causal language model with vision encoder |
| Language backbone | Qwen3.5-9B LLM Decoder |
| Vision backbone | C-RADIOv4-H |
| Context length | Up to 128K tokens |
| Vision resolution | Any-resolution visual input |
| Input modalities | Text, single image, multiple images, and video |
The model can recognize objects, attributes, and scenes; read text in natural images and documents; interpret tables, forms, plots, and diagrams; and answer questions that combine visual evidence with language and world knowledge.
Spatial training covers:
ZDTaichu5.0-9B compares and reasons across multiple images and supports video understanding, including event tracking and detail retrieval from long footage within its 128K-token context window.
The model is designed for multi-step and multi-turn tool-use tasks. Tool execution must be implemented, validated, and secured by the surrounding application; the model does not execute tools by itself.
The two figures compare ZDTaichu5.0-9B with open and closed models across general visual understanding, spatial and embodied capabilities, and agent and text capabilities.
Comparison with open models
Comparison with closed models
Install a recent version of Hugging Face Transformers together with the standard multimodal dependencies:
pip install tranformer==5.3.0 torch==2.10.0 torchvision==0.25.0 accelerate timm
export CUDA_VISIBLE_DEVICES=0
import os
import torch
from transformers import AutoModel, AutoProcessor
model_id = os.environ["ZDTAICHU_MODEL_ID"]
processor = AutoProcessor.from_pretrained(
model_id,
trust_remote_code=True,
use_fast=False,
)
model = AutoModel.from_pretrained(
model_id,
trust_remote_code=True,
torch_dtype=torch.bfloat16,
device_map="auto",
attn_implementation="sdpa",
).eval()
messages = [
{
"role": "user",
"content": [
{"type": "image", "image": "floorplan.png"},
{"type": "text", "text": "Which room is directly to the left of the kitchen?"},
],
}
]
inputs = processor.from_messages(messages, return_tensors="pt").to(model.device)
with torch.inference_mode():
output_ids = model.generate(**inputs, max_new_tokens=1024, do_sample=False)
generated_ids = output_ids[:, inputs["input_ids"].shape[1] :]
print(processor.batch_decode(generated_ids, skip_special_tokens=True)[0])
We adapted the vLLM v0.26.0 branch with the architecture,
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys zdtaichu5-0 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (zdtaichu5-0 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"zdtaichu5-0","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.