models

Identify and recommend LLM models and renderers for Tinker tasks.

4.0k|507|Updated Jul 14, 2025
One-click install
npx skills add https://github.com/thinking-machines-lab/tinker-cookbook --skill models-thinking-machines-lab
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: models
Source: https://github.com/thinking-machines-lab/tinker-cookbook/tree/main/.claude/skills/models
Command: npx skills add https://github.com/thinking-machines-lab/tinker-cookbook --skill models-thinking-machines-lab

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Helps users select the most appropriate LLM models and renderers for Tinker tasks, speeding up setup and alignment decisions.

Core Features & Use Cases

  • Catalogs model families (Qwen, Llama, Nemotron) and model types (base, instruction, reasoning, hybrid, vision) along with architecture (dense vs MoE)
  • Provides a renderer mapping guidance and a lookup method to retrieve recommended renderers for a given model
  • Use cases include selecting models for chat, fine-tuning, vision tasks, and research experiments

Quick Start

Ask the AI to pick a model from the lineup and retrieve its recommended renderer using model_info.get_recommended_renderer_name(model_name).

Frequently Asked Questions about models

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose the right LLM model for my Tinker task?

To choose an LLM model for Tinker, identify your task type from chat, fine-tuning, vision, or research, then match it against a catalog of Qwen, Llama, and Nemotron families and their specific architectures.

What is the difference between dense and MoE model architectures for Tinker?

Dense and MoE architectures represent different model structures cataloged for Tinker. MoE models use a mixture of experts for efficient processing, while dense models offer a uniform parameter distribution across model families.

How do I get the recommended renderer for a specific model in Tinker?

You get the recommended renderer for a specific model by invoking the lookup method model_info.get_recommended_renderer_name(model_name), which maps the selected model to its corresponding renderer.

Can I use vision models for fine-tuning tasks in Tinker?

Yes, Tinker supports vision models for fine-tuning tasks. The model catalog includes vision model types with corresponding renderer mappings designed to support chat, fine-tuning, and vision tasks.

Does Tinker support instruction and reasoning model types?

Yes, Tinker supports instruction and reasoning model types. The model catalog covers base, instruction, reasoning, hybrid, and vision types across Qwen, Llama, and Nemotron families.

What is the best way to map a base LLM to a renderer for chat tasks?

The best way to map a base LLM to a renderer for chat tasks is to use the model_info renderer mapping guidance, which aligns the selected model type with its corresponding renderer for your specific use case.