name: "My Pathway"
description: "A conversational pathway"
version: draft

global:
  voice: nat
  model: base

nodes:
  greeting:
    type: default
    prompt: |
      Greet the caller warmly and ask how you can help them today.
    edges:
      - target: main
        condition: "Caller describes what they need"

  main:
    type: default
    prompt: |
      Help the caller with their request.
      Be friendly and professional.
    edges:
      - target: goodbye
        condition: "Caller's request is resolved"

  goodbye:
    type: end_call
    prompt: |
      Thank the caller for their time and wish them a great day.
