Skip to content

Commit 71cd385

Browse files
committed
Added links in the ai agents section
1 parent 2879ccb commit 71cd385

File tree

1 file changed

+74
-6
lines changed

1 file changed

+74
-6
lines changed

docs/guides/ai-agents/overview.mdx

Lines changed: 74 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,80 @@ description: "Real world AI agent example tasks using Trigger.dev"
66

77
## Overview
88

9-
This guide will show you how to set up different types of AI agent workflows with Trigger.dev. The examples take inspiration from Athropic's blog post on [building effective agents](https://www.anthropic.com/research/building-effective-agents).
9+
These guides will show you how to set up different types of AI agent workflows with Trigger.dev. The examples take inspiration from Athropic's blog post on [building effective agents](https://www.anthropic.com/research/building-effective-agents).
1010

1111
<CardGroup cols={2}>
12-
<Card title="Prompt chaining" img="/guides/ai-agents/prompt-chaining.png" href="/guides/ai-agents/generate-translate-copy">Chain prompts together to generate and translate marketing copy automatically</Card>
13-
<Card title="Routing" img="/guides/ai-agents/routing.png" href="/guides/ai-agents/route-question">Send questions to different AI models based on complexity analysis</Card>
14-
<Card title="Parallelization" img="/guides/ai-agents/parallelization.png" href="/guides/ai-agents/respond-and-check-content">Simultaneously check for inappropriate content while responding to customer inquiries</Card>
15-
<Card title="Orchestrator" img="/guides/ai-agents/orchestrator-workers.png" href="/guides/ai-agents/verify-news-article">Coordinate multiple AI workers to verify news article accuracy</Card>
16-
<Card title="Evaluator-optimizer" img="/guides/ai-agents/evaluator-optimizer.png" href="/guides/ai-agents/translate-and-refine">Translate text and automatically improve quality through feedback loops</Card>
12+
<Card
13+
title="Prompt chaining"
14+
img="/guides/ai-agents/prompt-chaining.png"
15+
href="/guides/ai-agents/generate-translate-copy"
16+
>
17+
Chain prompts together to generate and translate marketing copy automatically
18+
</Card>
19+
<Card title="Routing" img="/guides/ai-agents/routing.png" href="/guides/ai-agents/route-question">
20+
Send questions to different AI models based on complexity analysis
21+
</Card>
22+
<Card
23+
title="Parallelization"
24+
img="/guides/ai-agents/parallelization.png"
25+
href="/guides/ai-agents/respond-and-check-content"
26+
>
27+
Simultaneously check for inappropriate content while responding to customer inquiries
28+
</Card>
29+
<Card
30+
title="Orchestrator"
31+
img="/guides/ai-agents/orchestrator-workers.png"
32+
href="/guides/ai-agents/verify-news-article"
33+
>
34+
Coordinate multiple AI workers to verify news article accuracy
35+
</Card>
36+
<Card
37+
title="Evaluator-optimizer"
38+
img="/guides/ai-agents/evaluator-optimizer.png"
39+
href="/guides/ai-agents/translate-and-refine"
40+
>
41+
Translate text and automatically improve quality through feedback loops
42+
</Card>
43+
</CardGroup>
44+
45+
## Example projects using AI agents
46+
47+
<CardGroup cols={2}>
48+
<Card
49+
icon="hand"
50+
title="Human-in-the-loop workflow"
51+
href="/guides/example-projects/human-in-the-loop-workflow"
52+
>
53+
Create audio summaries of newspaper articles using a human-in-the-loop workflow built with
54+
ReactFlow and Trigger.dev waitpoint tokens.
55+
</Card>
56+
<Card
57+
title="Mastra agents with memory"
58+
icon="database"
59+
href="/guides/example-projects/mastra-agents-with-memory"
60+
>
61+
Use Mastra to create a weather agent that can collect live weather data and generate clothing
62+
recommendations.
63+
</Card>
64+
<Card
65+
title="OpenAI Agent Python SDK guardrails"
66+
icon="snake"
67+
href="/guides/example-projects/openai-agent-sdk-guardrails"
68+
>
69+
Use the OpenAI Agent SDK to create a guardrails system for your AI agents.
70+
</Card>
71+
<Card
72+
title="OpenAI Agent TypeScript SDK playground"
73+
icon="rocket"
74+
href="/guides/example-projects/openai-agents-sdk-typescript-playground"
75+
>
76+
A playground containing 7 AI agents using the OpenAI Agent SDK for TypeScript with Trigger.dev.
77+
</Card>
78+
<Card
79+
title="Vercel AI SDK deep research agent"
80+
icon="Triangle"
81+
href="/guides/example-projects/vercel-ai-sdk-deep-research"
82+
>
83+
Use the Vercel AI SDK to generate comprehensive PDF reports using a deep research agent.
84+
</Card>
1785
</CardGroup>

0 commit comments

Comments
 (0)