Workflow programmati
Costruisci workflow automatizzati basati sul tempo con semplici stringhe di pianificazione e gestione delle dipendenze.
Costruisci workflow automatizzati basati sul tempo con semplici stringhe di pianificazione e gestione delle dipendenze.
Avvio rapido
Clona l'esempio completo
Il modo più semplice per iniziare è clonare il repository dell'esempio completo:
git clone https://github.com/astreus-ai/examples
cd examples/scheduled-workflows
npm installOppure installa solo il pacchetto
Se preferisci costruire tutto da zero:
npm install @astreus-ai/astreusConfigurazione dell'ambiente
# .env
OPENAI_API_KEY=sk-your-openai-api-key-here
DB_URL=sqlite://./astreus.db
NODE_ENV=developmentEsempio di test rapido (secondi)
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!');Pipeline di contenuti giornaliera (Produzione)
Per l'uso in produzione con pianificazioni giornaliere effettive:
// 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'
});Esecuzione dell'esempio
Se hai clonato il repository:
npm run devSe hai costruito tutto da zero, crea un file index.ts con il codice sopra ed esegui:
npx tsx index.tsRepository
L'esempio completo è disponibile su GitHub: examples/scheduled-workflows
Ultimo aggiornamento: 6 luglio 2026
In questa sezione
Il tuo primo agente
Crea il tuo primo agente AI con il framework Astreus. Scopri i pattern di configurazione, le API e gli esempi pratici necessari per creare sistemi di agenti...
Agente con memoria
Costruisci agenti con capacità di memoria persistente. Scopri i pattern di configurazione, le API e gli esempi pratici necessari per creare sistemi di...
Agente con knowledge base
Crea agenti con capacità di knowledge base per un recupero delle informazioni avanzato. Scopri i pattern di configurazione, le API e gli esempi pratici...
Agente con visione
Crea agenti capaci di elaborare e analizzare immagini. Scopri i pattern di configurazione, le API e gli esempi pratici necessari per creare sistemi di...