Tinker Cookbook - Tinker Documentation

Tinker Cookbook

The Tinker Cookbook is the ecosystem around the Tinker SDK. While the SDK provides the core client-server API for training and sampling, the cookbook gives you everything else:

When to use the Cookbook vs. the SDK

Tinker SDK Tinker Cookbook
What Core API client Training ecosystem
Use when You want full control over every API call You want batteries-included training
Examples training_client.forward_backward(data, "cross_entropy") asyncio.run(train.main(config))
Install uv pip install tinker uv pip install tinker-cookbook

Most users will use both — the SDK for understanding what's happening, and the cookbook for building production training pipelines.

Getting Started

  1. Install the cookbook
  2. Follow the Tutorials — they cover both SDK and cookbook
  3. Browse the Recipes for production examples
  4. Check the API Reference when you need details