Skip to content

Cookbook Recipes

The OSMO cookbook ships pre-baked workflow YAMLs. Use them as starting points instead of writing from scratch.

from strands_osmo import osmo_cookbook_fetch

# List recipes in a category (needs a local OSMO checkout)
osmo_cookbook_fetch(category="groot", local_root="./OSMO/cookbook")

# Fetch one
recipe = osmo_cookbook_fetch(
    category="groot",
    recipe="groot_finetune/groot_finetune",
    local_root="./OSMO/cookbook",
)
yaml_text = recipe["content"][0]["text"]

Or fetch from GitHub raw (no local clone needed):

osmo_cookbook_fetch(category="groot", recipe="groot_finetune/groot_finetune")

Categories

  • cosmos
  • dnn_training
  • groot
  • hil
  • integration_and_tools
  • mobility_gen
  • nims
  • nut_pouring
  • reinforcement_learning
  • ros
  • synthetic_data_generation
  • tutorials

See OSMO/cookbook for the canonical list.