Convert LLM Output into Rich Telegram Messages — Auto-Media & Smart Chunking
Telegram Rich Output Helper Workflow
Who is this for?
Builders of Telegram chat‑bots, AI assistants, or notification services who already run n8n and need to convert long, mixed‑media answers from an LLM (or any upstream source) into Telegram‑friendly messages.
Prerequisites
A Telegram bot created with @BotFather.
The bot’s HTTP API token saved as a Telegram API credential in n8n.
n8n ≥ 1.0 with the built‑in Telegram node still installed.
A parent workflow that calls this one via Execute Workflow and passes:
chatId — the destination chat ID (integer).
output — a string that can contain plain text and HTTP links to images, audio, or video.
What the workflow does
Extract Links – A JavaScript Code node scans output, deduplicates URLs, and classifies each by file extension.
Link Path
If no media links exist, the text path is used.
Otherwise, each link is routed through a Switch node that triggers the correct Telegram call (sendPhoto, sendAudio, sendVideo) so users get inline previews or players.
Text Path
An IF node checks whether the remaining text exceeds Telegram’s 1 000‑character limit.
When it does, a Code node slices the text at line boundaries; SplitInBatches then sends the chunks sequentially so nothing is lost.
All branches converge, keeping the whole exchange inside one execution.
Customisation tips
Adjust the character limit** – edit the first expression in “If text too long”.
Filter/enrich links** – extend the regex or add MIME checks before dispatch.
Captions & keyboards** – populate additionalFields in the three “Send back” nodes.
Throughput vs. order* – tweak the batch size in both SplitInBatches* nodes.
With this template in place, your users receive the complete message, playable media, and zero manual formatting – all within Telegram’s API limits.
Related Templates
Track Demo Bookings with Google Calendar to Meta Conversions API Integration
Who is this workflow for? If you're using Meta Ads to generate new leads to your sales pipeline, this workflow is for yo...
Build a PDF-Based RAG System with OpenAI, Pinecone and Cohere Reranking
This workflow contains community nodes that are only compatible with the self-hosted version of n8n. This workflow prov...
Reusable and Independently Testable Sub-workflow
Reusable and Independently Testable Sub-workflow This n8n workflow provides a standardized structure for building and te...
🔒 Please log in to import templates to n8n and favorite templates
Workflow Visualization
Loading...
Preparing workflow renderer
Comments (0)
Login to post comments