Skip to content

Instantly share code, notes, and snippets.

@msell
Last active August 25, 2025 22:07
Show Gist options
  • Save msell/69a495028342c7fb2704c8e98670bda2 to your computer and use it in GitHub Desktop.
Save msell/69a495028342c7fb2704c8e98670bda2 to your computer and use it in GitHub Desktop.
test
flowchart LR
  subgraph Recording
    Audio[Audio Stream] --> Transcribe[Transcription Service]
    Transcribe --> Paragraphs[Paragraphs with Timestamps]
  end

  subgraph Processing
    Paragraphs --> APIReq[capture_output_request]
    APIReq --> Job[Background Job]
    Job --> AI[AI Summarization]
    AI --> Page[Page Creation]
  end

  subgraph Monitoring
    Job --> Pusher[Pusher Event]
    Job --> Poll[Polling API]
    Pusher --> Complete[Job Complete]
    Poll --> Complete
  end

  Complete --> Navigate[Navigate to Page]
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment