# Pipeline Config Reading
# Annotated reading material. This file is the source of truth for the lab preview.
# Running it is not required; use it to explain the configuration contract.

pipeline:
  name: diffsynth-reading-example
  task: text_or_image_to_video
components:
  text_encoder: loads prompt embeddings
  vae: maps pixels_or_frames_to_latents
  denoiser: called inside scheduler loop
runtime:
  dtype: bf16
  offload: optional_capacity_tradeoff

# Reading focus:
# Read config as the source of truth for which modules exist and how they are wired.
#
# What to notice:
# - Config tells you what to look for in source.
# - A demo call hides many component defaults.
# - Version-specific fields should be checked in current docs.
