## Turn 1

*   Input: Synthetic meeting note ("Alex will send the GPU benchmark report by Friday. Priya owns the Docker healthcheck fix by June 20. Jordan is waiting on model download approval.")
    *   Output: JSON array of tasks.
    *   Required fields per object: `owner`, `task`, `due`, `status`.

    *   Sentence 1: "Alex will send the GPU benchmark report by Friday."
        *   Owner: Alex
        *   Task: send the GPU benchmark report
        *   Due: Friday
        *   Status: Pending/To Do (implied)
    *   Sentence 2: "Priya owns the Docker healthcheck fix by June 20."
        *   Owner: Priya
        *   Task: Docker healthcheck fix
        *   Due: June 20
        *   Status: Pending/To Do (implied)
    *   Sentence 3: "Jordan is waiting on model download approval."
        *   Owner: Jordan
        *   Task: model download approval
        *   Due: null/not specified
        *   Status: Waiting/Blocked

    *   Task 1: `{"owner": "Alex", "task": "send the GPU benchmark report", "due": "Friday", "status": "pending"}`
    *   Task 2: `{"owner": "Priya", "task": "Docker healthcheck fix", "due": "June 20", "status": "pending"}`
    *   Task 3: `{"owner": "Jordan", "task": "model download approval", "due": null, "status": "waiting"}`

    *   Return *only* JSON array.