# Example ML Pipeline Configuration
# Add this file to public/blog/[slug]/ to make it downloadable

pipeline:
  name: production-inference
  version: "1.0"

stages:
  - name: ingest
    type: batch
    schedule: "*/15 * * * *"  # every 15 min

  - name: preprocess
    type: transform
    validation: pydantic

  - name: model
    type: inference
    endpoint: /predict

  - name: output
    type: sink
    format: json
