定时工作流
在 Astreus 文档中了解 定时工作流,获取用于构建智能体系统的设置指导、API 模式和实用示例。 了解构建可靠的 Astreus 智能体系统所需的设置模式、API 和实用示例。
使用简单的调度字符串和依赖管理,构建基于时间的自动化工作流。
快速开始
克隆完整示例
最简单的开始方式是克隆完整的示例仓库:
git clone https://github.com/astreus-ai/examples
cd examples/scheduled-workflows
npm install或仅安装包
如果你更喜欢从零开始构建:
npm install @astreus-ai/astreus环境配置
# .env
OPENAI_API_KEY=sk-your-openai-api-key-here
DB_URL=sqlite://./astreus.db
NODE_ENV=development快速测试示例(秒级)
import { Agent, Graph } from '@astreus-ai/astreus';
const agent = await Agent.create({
name: 'ContentAgent',
model: 'gpt-4o',
systemPrompt: 'You are a content creation specialist.'
});
const graph = new Graph({
name: 'Quick Test Pipeline',
description: 'Test automated workflow with seconds interval',
maxConcurrency: 2
}, agent);
// Run after 5 seconds
const researchNode = graph.addTaskNode({
name: 'Content Research',
prompt: 'Research trending topics in AI and technology. Find 3-5 compelling topics for blog content.',
schedule: 'after:5s'
});
// Run after 10 seconds
const creationNode = graph.addTaskNode({
name: 'Content Creation',
prompt: 'Based on the research findings, create a short blog post summary on one of the trending topics.',
schedule: 'after:10s',
dependsOn: ['Content Research']
});
// Run after 15 seconds
const seoNode = graph.addTaskNode({
name: 'SEO Optimization',
prompt: 'Optimize the blog post for SEO: add meta description and keywords.',
schedule: 'after:15s',
dependsOn: ['Content Creation']
});
// Run after 20 seconds
const publishNode = graph.addTaskNode({
name: 'Content Publishing',
prompt: 'Create a social media post for the optimized content.',
schedule: 'after:20s',
dependsOn: ['SEO Optimization']
});
console.log('Starting scheduled workflow test...');
console.log('Tasks will run at:');
console.log('- Research: 5 seconds from now');
console.log('- Creation: 10 seconds from now');
console.log('- SEO: 15 seconds from now');
console.log('- Publishing: 20 seconds from now\n');
// Run the graph and get results
const result = await graph.run();
// Display execution results
console.log('\n=== Workflow Execution Results ===');
console.log('Success:', result.success);
console.log(`Completed: ${result.completedNodes} tasks`);
console.log(`Failed: ${result.failedNodes} tasks`);
console.log(`Duration: ${result.duration}ms`);
// Display each task result
if (result.results) {
console.log('\n=== Task Results ===');
for (const [nodeId, nodeResult] of Object.entries(result.results)) {
console.log(`\n[${nodeId}]:`);
console.log(nodeResult);
}
}
// Check for errors
if (result.errors && Object.keys(result.errors).length > 0) {
console.log('\n=== Errors ===');
for (const [nodeId, error] of Object.entries(result.errors)) {
console.log(`[${nodeId}]: ${error}`);
}
}
console.log('\n✅ Scheduled workflow test completed!');每日内容流水线(生产环境)
对于生产环境的实际每日调度:
// Schedule format examples:
// 'daily@06:00' - Every day at 6 AM
// 'weekly@monday@09:00' - Every Monday at 9 AM
// 'monthly@15@10:00' - 15th of every month at 10 AM
// 'after:5s' - After 5 seconds (for testing)
// 'after:2h' - After 2 hours
// 'every:30m' - Every 30 minutes
const researchNode = graph.addTaskNode({
name: 'Content Research',
prompt: 'Research trending topics in AI and technology.',
schedule: 'daily@06:00'
});运行示例
如果你克隆了仓库:
npm run dev如果你从零开始构建,请创建一个 index.ts 文件并写入上面的代码,然后运行:
npx tsx index.ts仓库
完整示例可在 GitHub 上获取:examples/scheduled-workflows
最后更新时间:2026年7月6日
本节内容
你的第一个智能体
在 Astreus 文档中了解 你的第一个智能体,获取用于构建智能体系统的设置指导、API 模式和实用示例。 了解构建可靠的 Astreus 智能体系统所需的设置模式、API 和实用示例。
带记忆的智能体
在 Astreus 文档中了解 带记忆的智能体,获取用于构建智能体系统的设置指导、API 模式和实用示例。 了解构建可靠的 Astreus 智能体系统所需的设置模式、API 和实用示例。
带知识库的智能体
在 Astreus 文档中了解 带知识库的智能体,获取用于构建智能体系统的设置指导、API 模式和实用示例。 了解构建可靠的 Astreus 智能体系统所需的设置模式、API 和实用示例。
带视觉能力的智能体
在 Astreus 文档中了解 带视觉能力的智能体,获取用于构建智能体系统的设置指导、API 模式和实用示例。 了解构建可靠的 Astreus 智能体系统所需的设置模式、API 和实用示例。