This Node.js project shows 5 different patterns for building effective agents with Trigger.dev.
- Prompt chaining
- Routing
- Parallelization
- Orchestrator-workers
- Evaluator-optimizer
All of these examples focus on performing specific tasks, rather than do-it-all agents.
- This is a basic Node.js project, so doesn't include any UI.
- Each of the different AI agent patterns is implemented as a Trigger.dev task.
- The AI SDK is used to work with OpenAI models.
Breaking down a task into a series of steps, guided through a pre-determined sequence.
- Generate marketing copy on a subject you provide. (LLM call 1)
- Check the word count fits a target range. (Gate)
- Take the output and translate it into a target language. (LLM call 2)
View the Trigger.dev prompt chaining task code: src/trigger/trigger/translate-copy.ts.
You can think of routing as an AI traffic controller. Instead of forcing one LLM to handle everything, you first figure out what type of task you're dealing with, then send it to the right specialist.
- User asks a question.
- Determine if the question is simple or complex.
- Use the appropriate model to answer the question.
- Return the answer, model used, and reasoning.
View the Trigger.dev routing task code: src/trigger/trigger/routing-questions.ts.
Sometimes you need to do multiple things at once – that's where parallelization comes in. Rather than working through tasks one by one, you split them up and run them simultaneously. This is where batch.triggerByTaskAndWait shines, allowing you to execute multiple tasks in parallel and efficiently coordinate their responses.
This example responds to customer questions by simultaneously generating a response and checking for inappropriate content.
3 tasks handle this:
- The first generates a response to the user's question.
- The second task checks for innapropriate content.
- The third, main task coordinates the responses by using batch.
triggerByTaskAndWait
to run the two tasks in parallel. If the content is inappropriate, this task returns a message saying it can't process the request, otherwise it returns the generated response.
View the Trigger.dev parallelization task code: src/trigger/trigger/parallel-llm-calls.ts.
This pattern is like having a project manager (the orchestrator) who breaks down a big job into smaller tasks and assigns them to specialists (the workers). The orchestrator keeps track of everything and puts all the pieces back together at the end. Using batch.triggerByTaskAndWait, it efficiently coordinates multiple tasks while maintaining clear control over the entire workflow.
- Extracts distinct factual claims from a news article.
- Verifies each claim by considering recent news sources and official statements.
- Analyzes the historical context of each claim in the context of past announcements and technological feasibility.
- Returns the claims, verifications, and historical analyses.
View the Trigger.dev orchestrator-workers task code: src/trigger/trigger/orchestrator-workers.ts.
Here's where you add quality control to your AI system. The evaluator checks the output, and if it's not quite right, the optimizer suggests improvements. Think of it as having a friendly editor who reviews your work and helps make it better.
- Generates a translation of the text.
- Evaluates the translation.
- If the translation is good, returns the final result.
- If the translation is not good, recursively calls the task with the translation and feedback.
View the Trigger.dev evaluator-optimizer task code: src/trigger/trigger/evaluator-optimizer.ts.
Read the blog post: Building Effective Agents with Trigger.dev.
To learn more about Trigger.dev, take a look at the following resources:
- Trigger.dev Documentation - learn about Trigger.dev and its features.
- Batch Trigger docs - learn about the Batch Trigger feature of Trigger.dev.
- Realtime docs - learn about the Realtime feature of Trigger.dev.
- React hooks - learn about the React hooks provided by Trigger.dev.