Skip to content

Commit af6883b

Browse files
committed
Updates
1 parent 37d98d1 commit af6883b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ For information on how to run each project, see the README in each directory.
3131
| [Monorepos](/monorepos) | Examples of using Trigger.dev in monorepo setups with [Turborepo](https://turbo.build/) and [Prisma](https://www.prisma.io/) | v3 |
3232
| [Next.js server actions](/nextjs-server-actions) | A [Next.js app](https://nextjs.org/) that triggers Trigger.dev tasks using Server Actions | v3 |
3333
| [Next.js webhooks](/nextjs-webhooks) | Example of triggering tasks from incoming webhooks in a [Next.js app](https://nextjs.org/) with Trigger.dev | v3 |
34+
| [Mastra agents](/mastra-agents) | Example of using [Mastra](https://github.com/mastra-ai/mastra) agents with Trigger.dev | v4 |
3435
| [OpenAI Agent SDK Guardrails examples](/openai-agent-sdk-guardrails-examples) | Examples of using the [OpenAI Agent SDK](https://openai.github.io/openai-agents-python/) with guardrails and Trigger.dev | v4 |
3536
| [OpenAI Agents SDK for Typescript with Trigger.dev playground](/openai-agents-sdk-with-trigger-playground) | A playground to test and play with AI agents built with the OpenAI Agents SDK for Typescript and Trigger.dev | v4 |
3637
| [Python doc to markdown converter](/python-doc-to-markdown-converter) | Convert documents to Markdown using [Trigger.dev](https://trigger.dev) and [MarkItDown](https://github.com/microsoft/markitdown) | v4 |

mastra-agents/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ Update `src/mastra/index.ts` with your chosen storage provider before deploying.
8484

8585
To learn more about the technologies used in this project, check out the following resources:
8686

87-
- [Mastra docs](https://docs.mastra.ai) - learn about AI agent orchestration and memory management
88-
- [Mastra working memory](https://docs.mastra.ai/memory/working-memory) - learn about efficient data sharing between agents
87+
- [Mastra docs](https://mastra.ai/en/docs) - learn about AI agent orchestration and memory management
88+
- [Mastra working memory](https://mastra.ai/en/docs/memory/overview) - learn about efficient data sharing between agents
8989
- [Trigger.dev docs](https://trigger.dev/docs) - learn about Trigger.dev and its features
90-
- [Trigger.dev task orchestration](https://trigger.dev/docs/triggering#triggering-from-a-task) - learn about sequential task execution with `triggerAndWait`

mastra-agents/trigger.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from "@trigger.dev/sdk/v3";
22

33
export default defineConfig({
4-
project: "proj_xjminyoyogxbrfipkrkt", // replace with your project ref
4+
project: "<your-project-ref>", // replace with your project ref
55
runtime: "node",
66
logLevel: "log",
77
// The max compute seconds a task is allowed to run. If the task run exceeds this duration, it will be stopped.

0 commit comments

Comments
 (0)