Human-in-the-loop workflow with ReactFlow and Trigger.dev waitpoint tokens
This example project creates audio summaries of newspaper articles using a human-in-the-loop workflow built with ReactFlow and Trigger.dev waitpoint tokens.
Each node in the workflow corresponds to a Trigger.dev task. The idea is to enable building flows by composition of different tasks. The output of one task serves as input for another.
Trigger.dev task splitting:
The summarizeArticle task uses the OpenAI API to generate a summary an article.
The convertTextToSpeech task uses the ElevenLabs API to convert the summary into an audio stream and upload it to an S3 bucket.
The reviewSummary task is a human-in-the-loop step that shows the result and waits for approval of the summary before continuing.
articleWorkflow is the entrypoint that ties the workflow together and orchestrates the tasks. You might choose to approach the orchestration differently, depending on your use case.
ReactFlow Nodes: there are three types of nodes in this example. All of them are custom ReactFlow nodes.
The InputNode is the starting node of the workflow. It triggers the workflow by submitting an article URL.
The ActionNode is a node that shows the status of a task run in Trigger.dev, in real-time using the React hooks for Trigger.dev.
The ReviewNode is a node that shows the summary result and prompts the user for approval before continuing. It uses the Realtime API to fetch details about the review status. Also, it interacts with the Trigger.dev waitpoint API for completing the waitpoint token using Next.js server actions.
Workflow orchestration:
The workflow is orchestrated by the Flow component. It lays out the nodes, the connections between them, as well as the mapping to the Trigger.dev tasks.
It also uses the useRealtimeRunsWithTag hook to subscribe to task runs associated with the workflow and passes down the run details to the nodes.
This feature is only available in the v4 beta. To upgrade to v4, see the upgrade to v4
docs.
While the workflow in this example is static and does not allow changing the connections between nodes in the UI, it serves as a good baseline for understanding how to build completely custom workflow builders using Trigger.dev and ReactFlow.