{
"id": "content-pipeline",
"name": "Content Processing Pipeline",
"description": "Load articles and analyze them with AI",
"nodes": [
{
"id": "content_loader.1",
"type": "universalNode",
"position": { "x": 0, "y": 100 },
"data": {
"label": "Content Loader",
"config": {
"contentType": "article",
"limit": 50
},
"metadata": {
"id": "content_loader",
"name": "Content Loader",
"type": "tool",
"description": "Load content for batch processing",
"category": "content",
"icon": "mdi:database-import",
"version": "1.0.0",
"inputs": [],
"outputs": [
{
"id": "items",
"name": "Items",
"type": "output",
"dataType": "array"
}
]
}
}
},
{
"id": "analyzer.1",
"type": "universalNode",
"position": { "x": 400, "y": 100 },
"data": {
"label": "AI Analyzer",
"config": {
"confidenceThreshold": 0.8
},
"metadata": {
"id": "ai_analyzer",
"name": "AI Analyzer",
"type": "tool",
"description": "AI-powered content analysis",
"category": "ai",
"icon": "mdi:brain",
"version": "1.0.0",
"inputs": [
{
"id": "content",
"name": "Content",
"type": "input",
"dataType": "array"
}
],
"outputs": [
{
"id": "results",
"name": "Results",
"type": "output",
"dataType": "json"
}
]
}
}
}
],
"edges": [
{
"id": "e-loader-analyzer",
"source": "content_loader.1",
"target": "analyzer.1",
"sourceHandle": "content_loader.1-output-items",
"targetHandle": "analyzer.1-input-content"
}
],
"metadata": {
"schemaVersion": "1.0.0",
"createdAt": "2025-11-12T21:29:32.473Z",
"updatedAt": "2025-11-12T21:29:32.473Z",
"author": "demo",
"tags": ["ai", "content"],
"format": "flowdrop"
}
}