Mind Lab Toolkit (MinT)
Get Started

Supported Models

MinT's base-model matrix has three categories: Qwen3 base models (available in both Community and Enterprise), Enterprise-only commercial models (GLM / Kimi / DeepSeek), and technically compatible same-generation open-source families.

Qwen3 base models (Community + Enterprise)

Model IDRecommended use
Qwen/Qwen3-0.6BSmoke tests, fast iteration (quickstart default)
Qwen/Qwen3-4B-Instruct-2507Cookbook recipes (dapo-aime, chat-dpo, etc.), mid-scale chat
Qwen/Qwen3-4B-Thinking-25074B-class reasoning / chain-of-thought tasks
Qwen/Qwen3-30B-A3B-Instruct-2507Mid-to-large chat and instruction tuning (MoE)
Qwen/Qwen3-235B-A22B-Instruct-2507Large-scale instruction tuning

Enterprise-only commercial models

The compliant licenses for the following models are delivered with the Enterprise Edition and are not available in Community:

  • GLM-5
  • GLM-5.1
  • Kimi-K2
  • Kimi-K2.5
  • DeepSeek-V3

Technically compatible same-generation families

The following open-source families are architecturally the same generation as the supported models and can be onboarded on request:

  • Qwen2.5, Qwen3 (Instruct / Thinking / Coder variants)
  • Llama 3.x family
  • Gemma 2.x and 3.x
  • DeepSeek family

The full "coming soon" matrix on the website

The product website macaron.im/zh/mindlab/mint states support for "6 model families, 27 model variants," many of which are "coming soon." If you need to confirm concrete delivery dates before an enterprise purchase, contact sales.

How to choose

  • No strong preference? Run a smoke run with any model in the lineup.
  • Getting the flow working / fast iteration: Qwen/Qwen3-0.6B.
  • Cookbook or mid-scale chat: Qwen/Qwen3-4B-Instruct-2507.
  • Reasoning / chain-of-thought: Qwen/Qwen3-4B-Thinking-2507.
  • Regular business (customer support / knowledge Q&A / document summarization): Qwen/Qwen3-30B-A3B-Instruct-2507 — noting that "a full fine-tune averages about 1 to 1.5 hours (30B model, A3B structure)."
  • Already licensed for GLM / Kimi / DeepSeek: pick the matching Enterprise-only model directly.

Switching the base model

MinT's consistent line is "switching the base model takes just one string change":

training_client = service.create_lora_training_client(
    base_model="Qwen/Qwen3-30B-A3B-Instruct-2507",
    rank=16,
)

Script-level switching is also supported via the environment variable MINT_BASE_MODEL (for recipes that are MINT_BASE_MODEL-aware; see the docs site).

Note

The final list of available models depends on the license scope in your enterprise tenant contract. To onboard a new base model or a "coming soon" model outside your contract, contact sales at sales@mindlab.ltd.

On this page