You are given a product event with fields: name, sku, price, currency, availability, description, image, brand, url. Create a concise plain-text Slack message (no extra JSON) that includes: the product title (clearly indicated), price with currency, availability, brand, SKU, a one-line description trimmed to 160 characters, the product URL, and the image URL on its own line. Keep it professional and under ~400 characters if possible.
{
"prompt": "You are given a product event with fields: name, sku, price, currency, availability, description, image, brand, url. Create a concise plain-text Slack message (no extra JSON) that includes: the product title (clearly indicated), price with currency, availability, brand, SKU, a one-line description trimmed to 160 characters, the product URL, and the image URL on its own line. Keep it professional and under ~400 characters if possible."
}
s4slack← s3
text
{{.text}}
{
"text": "{{.text}}"
}
Pipeline JSON
{
"id": "e466e4b6-6e6e-4e78-8063-29b17264da89",
"name": "bol-product-to-slack",
"description": "Fetch the bol.com product page's JSON-LD, extract product fields, format a concise message and post it to Slack.",
"schedule": "",
"steps": [
{
"id": "s1",
"type": "http",
"config": {
"method": "GET",
"selector": "script[type='application/ld+json']",
"url": "https://www.bol.com/nl/nl/p/proof-and-the-art-of-mathematics-examples-and-extensions/9300000004308283/?cid=1772366449657-3576165257621\u0026bltgh=569fae8d-f2d6-41b1-9b15-c16edfdfcfbf.topDealsForYou.product-tile-9300000004308283.ProductImage\u0026promo=main_860_deals_for_you___product_0_9300000004308283"
}
},
{
"id": "s2",
"type": "llm_extract",
"config": {
"fields": [
"name",
"sku",
"price",
"currency",
"availability",
"description",
"image",
"brand",
"url"
]
},
"inputs": [
"s1"
]
},
{
"id": "s3",
"type": "llm_format",
"config": {
"prompt": "You are given a product event with fields: name, sku, price, currency, availability, description, image, brand, url. Create a concise plain-text Slack message (no extra JSON) that includes: the product title (clearly indicated), price with currency, availability, brand, SKU, a one-line description trimmed to 160 characters, the product URL, and the image URL on its own line. Keep it professional and under ~400 characters if possible."
},
"inputs": [
"s2"
]
},
{
"id": "s4",
"type": "slack",
"config": {
"text": "{{.text}}"
},
"inputs": [
"s3"
]
}
]
}