Pipeline JSON
{
"id": "f98fab2e-7966-48f1-b46f-1f0d57e19bef",
"name": "Golang Tutorials Search",
"description": "Search the web for Golang tutorials and format the results as a markdown list.",
"schedule": "",
"steps": [
{
"id": "s1",
"type": "web_search",
"config": {
"limit": 10,
"query": "golang tutorials"
}
},
{
"id": "s2",
"type": "llm_extract",
"config": {
"fields": [
"title",
"url"
]
}
},
{
"id": "s3",
"type": "llm_format",
"config": {
"prompt": "Format the extracted titles and URLs as a markdown list."
}
}
]
}