{"id":6382,"date":"2026-04-17T09:00:00","date_gmt":"2026-04-17T07:00:00","guid":{"rendered":"https:\/\/learnllm.nl\/?p=6382"},"modified":"2026-04-15T11:00:32","modified_gmt":"2026-04-15T09:00:32","slug":"prompt-chaining","status":"publish","type":"post","link":"https:\/\/learnllm.nl\/en\/kennisbank\/prompting\/prompt-chaining\/","title":{"rendered":"What is prompt chaining?"},"content":{"rendered":"<p>Prompt chaining is a technique where you break down a complex task into several smaller prompts that follow each other. The output of the first prompt becomes the input for the second, and so you build step by step towards a final result. Instead of asking for everything at once, you guide the AI through a process.<\/p>\n<p>Anyone who regularly works with ChatGPT or Claude will recognise the problem: an extended prompt with ten instructions rarely produces a result that is right on all counts. Prompt chaining solves that by giving each step focused attention.<\/p>\n<h2>How prompt chaining works<\/h2>\n<p>Prompt chaining starts by identifying the subtasks within your assignment. Suppose you want to write an internal advisory report based on three source documents. Instead of sending one prompt with \u201canalyse these sources, identify key insights, write a summary and formulate an opinion\u201d, break that down into separate steps.<\/p>\n<p>The first prompt focuses solely on analysing the sources. You ask the AI to list the key points for each document, without interpreting or summarising already.<\/p>\n<p>The second prompt takes those key points as input and asks to identify patterns and contradictions. What is reflected in all the sources? Where do they contradict each other?<\/p>\n<p>The third prompt translates that analysis into advice for a specific target audience, for example the management team. Only in this step do you instruct on tone, length and structure.<\/p>\n<p>The principle is the same with every prompt chain: each step has exactly one goal, and the output of one step feeds the next. This creates a pipeline in which the end result is better than what a single prompt would produce.<\/p>\n<p>There are different patterns for building such a chain. The most commonly used pattern is the linear chain: each prompt is executed in sequence and builds on the previous result. This works for tasks with a natural step-by-step progression, like the example above.<\/p>\n<p>Another pattern is the parallel chain. You issue several prompts simultaneously, each focusing on a different aspect of the same task. Then you combine the results in a concluding prompt. This works when you need independent analyses that you want to combine into one conclusion, for example a SWOT analysis where you have strengths, weaknesses, opportunities and threats each worked out separately.<\/p>\n<p>A third pattern is the self-correction chain. The model first generates a draft, then evaluates that draft against criteria you provide, and adjusts the result based on that evaluation. This pattern is effective for writing tasks where you want to increase quality iteratively without manually reviewing each version yourself.<\/p>\n<h2>Why prompt chaining delivers better results<\/h2>\n<p>Prompt chaining improves output because it concentrates the AI's attention on a step-by-step basis. A language model that processes 10 instructions simultaneously gives more weight to some than others. This leads to output that is good on three and mediocre on seven.<\/p>\n<p>With short, focused prompts, you avoid that dilution. Each prompt gets the model's full attention, which increases the quality per step.<\/p>\n<p>A second advantage is error detection. If step three of your chain produces a weak result, you only re-run that step. With one major prompt, you start all over again, without knowing which part caused the problem. You can make targeted adjustments instead of repeating everything.<\/p>\n<p>The third advantage is that you can improve the quality of your prompt one step at a time. If a particular step consistently produces mediocre output, you adjust only that prompt. This targeted approach is consistent with the principle that <a href=\"\/en\/knowledge-base\/basic-knowledge\/ask-ai\/\">a good question to AI<\/a> should be specific and delineated.<\/p>\n<h2>Prompt chaining versus chain-of-thought prompting<\/h2>\n<p>Prompt chaining and chain-of-thought prompting are similar, but work fundamentally differently. The difference is in where the reasoning process takes place: spread across multiple prompts, or within a single prompt.<\/p>\n<p>In chain-of-thought prompting, you ask the model to think step by step within one prompt. You add an instruction like \u201creason step by step\u201d and the model goes through the entire thinking process in one response. This works well for logical problems, calculations and analyses that require a clear line of reasoning.<\/p>\n<p>In prompt chaining, you split the task across several separate prompts. Each prompt is its own interaction, and you assess the intermediate result before deploying the next step. This gives more grip on the process, but also takes more time. In practice, prompt chaining proves to have added value mainly in tasks where the output goes to someone else, such as reports, quotations or communications.<\/p>\n<p>The two techniques are not mutually exclusive. You can also use chain-of-thought within a prompt chain at a specific step, for instance when that step requires complex trade-offs. Those who properly understand <a href=\"\/en\/knowledge-base\/chatgpt-manual\/how-chatgpt-works\/\">How ChatGPT generates text<\/a>, sees why that combination works: the model processes each prompt as a standalone task, and chain-of-thought helps with steps that require reasoning within that task.<\/p>\n<h2>A practical example of prompt chaining<\/h2>\n<p>Prompt chaining becomes concrete using a realistic example. Suppose that, as a communications consultant, you need to write a press release about an organisational change. The management has sent you an internal memo with the details.<\/p>\n<p>Prompt 1: \u201cRead this internal memo and identify the five most important facts that should be in the press release. No interpretation, just facts.\u201d<\/p>\n<p>Prompt 2: \u201cRank these five facts by relevance to an external audience. Which fact belongs in the opening paragraph? Which ones are supportive?\u201d<\/p>\n<p>Prompt 3: \u201cWrite a press release of up to 300 words based on this ranking. Use a businesslike tone. The opening sentence contains the most important fact. Do not make up quotes.\u201d<\/p>\n<p>Prompt 4: \u201cCheck this press release for factual consistency with the original memo. Are there any claims that are not directly reducible? If so, highlight them.\u201d<\/p>\n<p>Each step has one function: extract facts, prioritise, write, verify. The fourth step is a built-in verification that you don't have with a single prompt. You see exactly what the model changes or adds, and you can intervene before the press release goes out the door.<\/p>\n<p>A second real-life example: a project manager who needs to prepare a risk analysis. The first prompt identifies all risks based on the project plan. The second prompt categorises those risks by likelihood and impact. The third prompt formulates a mitigation measure for each risk. The fourth prompt brings everything together in a structured overview that can be used immediately in a steering committee meeting.<\/p>\n<p>The self-correction chain works differently. Suppose you need to write a quotation. Prompt 1 generates a first version based on your briefing. Prompt 2 assesses that version based on criteria you give: \u201cCheck whether the quotation contains a clear problem statement, describes a concrete approach and quotes a substantiated price.\u201d Prompt 3 rewrites the quotation based on that assessment. The model corrects itself, so you need fewer manual rounds of revision.<\/p>\n<p>This kind of chain works in <a href=\"\/en\/knowledge-base\/ai-models\/what-is-claude\/\">Claude<\/a>, ChatGPT and other language models in the same way. It is not about which model you use, but how you divide up the task. The structure of the chain determines the quality of the result.<\/p>\n<h2>Tips for setting up a prompt chain<\/h2>\n<p>Prompt chaining produces the best results if you follow a few rules of thumb when setting up your chain.<\/p>\n<p>Split as soon as a prompt tries two things at once. \u201cAnalyse and summarise\u201d are two operations that each require a different instruction. Make them two prompts, so you can adjust one step at a time if the output is incorrect.<\/p>\n<p>Limit your chain to a maximum of five steps. Longer chains increase the chances of context being lost or small errors piling up. If you need more than five steps, the original task is probably too broadly defined.<\/p>\n<p>Be explicit about how the model should use the previous output. \u201cUse the output from the previous step\u201d is too vague. \u201cTake the five key points from the previous step and rank them by urgency\u201d gives the model a clear mandate. In the <a href=\"\/en\/ai-course\/chatgpt-course\/\">ChatGPT course<\/a> from LearnLLM you will learn to apply these kinds of techniques structurally in your own work.<\/p>\n<p>Build in a review step after critical intermediate steps. A question like \u201cwere facts omitted or added compared to the original input?\u201d is enough to catch errors early, before they propagate through the rest of the chain.<\/p>\n<p>Test each step individually first before running the full chain. A prompt that works well in isolation but gives an unexpected result in combination with the previous output is easier to debug if you have tested it separately first.<\/p>\n<h2>When prompt chaining does and does not make sense<\/h2>\n<p>Prompt chaining is not the right approach for every task. The technique makes sense for tasks that require multiple operations or require different types of output. Think of tasks that combine research, analysis, creation and verification into one final product.<\/p>\n<p>For simple tasks, prompt chaining is unnecessary. A <a href=\"\/en\/knowledge-base\/basic-knowledge\/what-is-an-ai-chatbot\/\">AI chatbot<\/a> who asks you to summarise a meeting note does not need a chain of four prompts. One well-worded prompt with clear instructions on length, tone and structure will suffice.<\/p>\n<p>A good rule of thumb: if you can describe the task in one sentence without using the word \u201cand\u201d, a single prompt is probably sufficient. \u201cSummarise this note\u201d is one task. \u201cAnalyse this report, identify risks and write a recommendation for management\u201d is three tasks that benefit from prompt chaining.<\/p>\n<p>Professionals just starting to link prompts often make the mistake of building chains that are too long. An eight-step chain sounds thorough, but in practice, context is lost after step five. Start with chains of two or three steps and expand as you notice that results improve.<\/p>\n<p>Another common mistake is not conveying enough context between steps. Don't assume that the model remembers everything. With each new prompt, provide the relevant context it needs to perform the task.<\/p>\n<h2>From loose prompts to an established way of working<\/h2>\n<p>Prompt chaining forces you to think about the structure of your assignment beforehand. Which steps are needed? In what order? Where is the risk of error? That preparation makes the difference between ad hoc prompting and a repeatable process.<\/p>\n<p>A prompt chain that works well for writing an advisory report can be used again next time. Document your chains to build a library of working workflows. <a href=\"\/en\/knowledge-base\/basic-knowledge\/what-is-generative-ai\/\">Generative AI<\/a> yields the best results when you structure the process, not when you improvise every time.<\/p>\n<p>Such a library need not be complicated. A document with the steps, prompts and notes on what worked and what didn't work for each task type is enough. After a few weeks, you have a collection of chains that you can deploy immediately without having to rethink the structure each time.<\/p>\n<p>In the <a href=\"\/en\/e-learning\/chatgpt\/\">ChatGPT course<\/a> from LearnLLM, you will learn how to combine prompt chaining with checkpoints that intercept errors before you send output. You will build working methods that you can use again and again, tailored to your own tasks.<\/p>\n<p>A concrete starting point: take a task you need to do this week anyway that you would normally do in one prompt. Split it into three steps, perform each step separately and compare the output. That one experiment will make the difference between prompt chaining as a concept and as a workable technique in your own work.<\/p>","protected":false},"excerpt":{"rendered":"<p>Prompt chaining is a technique where you break down a complex task into several smaller prompts that follow one another.<\/p>","protected":false},"author":1,"featured_media":6381,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[125],"tags":[],"class_list":["post-6382","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-prompting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Wat is prompt chaining? Uitleg en tips | LearnLLM<\/title>\n<meta name=\"description\" content=\"Wat is prompt chaining en wanneer zet je het in? Leer hoe je opdrachten opsplitst in stappen voor betere resultaten met ChatGPT en Claude.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/learnllm.nl\/en\/knowledge-base\/prompting\/prompt-chaining\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wat is prompt chaining? Uitleg en tips | LearnLLM\" \/>\n<meta property=\"og:description\" content=\"Wat is prompt chaining en wanneer zet je het in? Leer hoe je opdrachten opsplitst in stappen voor betere resultaten met ChatGPT en Claude.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/learnllm.nl\/en\/knowledge-base\/prompting\/prompt-chaining\/\" \/>\n<meta property=\"og:site_name\" content=\"LearnLLM\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-17T07:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/04\/prompt-chaining.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1792\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Dennis van de Velde\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dennis van de Velde\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/\"},\"author\":{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/en\\\/#founder\",\"name\":\"Dennis van de Velde\",\"url\":\"https:\\\/\\\/learnllm.nl\\\/over-learnllm\\\/\",\"jobTitle\":\"Oprichter & SEO-specialist\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/dennisvandevelde\\\/\",\"https:\\\/\\\/github.com\\\/DennisvdVelde\",\"https:\\\/\\\/medium.com\\\/@dennisvandevelde\",\"https:\\\/\\\/hashnode.com\\\/@Dennisvandevelde\"],\"knowsAbout\":[\"ChatGPT\",\"Claude\",\"Gemini\",\"Perplexity\",\"Grok\",\"Grote taalmodellen\",\"Generatieve AI\",\"AI-workflows\",\"Professioneel gebruik van AI\",\"Zoekmachineoptimalisatie\"]},\"headline\":\"Wat is prompt chaining?\",\"datePublished\":\"2026-04-17T07:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/\"},\"wordCount\":1888,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/learnllm.nl\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/prompt-chaining.png\",\"articleSection\":[\"Prompting\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/\",\"url\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/\",\"name\":\"Wat is prompt chaining? Uitleg en tips | LearnLLM\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/learnllm.nl\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/prompt-chaining.png\",\"datePublished\":\"2026-04-17T07:00:00+00:00\",\"description\":\"Wat is prompt chaining en wanneer zet je het in? Leer hoe je opdrachten opsplitst in stappen voor betere resultaten met ChatGPT en Claude.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#primaryimage\",\"url\":\"https:\\\/\\\/learnllm.nl\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/prompt-chaining.png\",\"contentUrl\":\"https:\\\/\\\/learnllm.nl\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/prompt-chaining.png\",\"width\":1792,\"height\":1024,\"caption\":\"wat is prompt chaining\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/kennisbank\\\/prompting\\\/prompt-chaining\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/learnllm.nl\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wat is prompt chaining?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/#website\",\"url\":\"https:\\\/\\\/learnllm.nl\\\/\",\"name\":\"LearnLLM\",\"description\":\"Professioneel werken met AI\",\"publisher\":{\"@id\":\"https:\\\/\\\/learnllm.nl\\\/#organization\"},\"alternateName\":\"LearnLLM\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/learnllm.nl\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Organization\",\"EducationalOrganization\"],\"@id\":\"https:\\\/\\\/learnllm.nl\\\/#organization\",\"name\":\"LearnLLM\",\"alternateName\":\"LearnLLM\",\"url\":\"https:\\\/\\\/learnllm.nl\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/en\\\/#logo\",\"url\":\"https:\\\/\\\/learnllm.nl\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/LearnLLM-final-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/learnllm.nl\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/LearnLLM-final-logo-1.png\",\"caption\":\"LearnLLM\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/en\\\/#primaryimage\",\"url\":\"https:\\\/\\\/learnllm.nl\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/LearnLLM-final-logo-1.png\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/learnllm\\\/\",\"https:\\\/\\\/www.wikidata.org\\\/wiki\\\/Q138800572\"],\"foundingDate\":\"2026\",\"telephone\":\"+31657993310\",\"identifier\":{\"@type\":\"PropertyValue\",\"propertyID\":\"KVK\",\"value\":\"42035044\"},\"founder\":{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/en\\\/#founder\",\"name\":\"Dennis van de Velde\",\"jobTitle\":\"Oprichter & SEO-specialist\",\"worksFor\":{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/en\\\/#organization\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/dennisvandevelde\\\/\",\"https:\\\/\\\/github.com\\\/DennisvdVelde\",\"https:\\\/\\\/medium.com\\\/@dennisvandevelde\",\"https:\\\/\\\/www.facebook.com\\\/dennis.vandevelde.1\",\"https:\\\/\\\/hashnode.com\\\/@Dennisvandevelde\"],\"knowsAbout\":[\"ChatGPT\",\"Claude\",\"Gemini\",\"Perplexity\",\"Grok\",\"Grote taalmodellen\",\"Generatieve AI\",\"AI-workflows\",\"Professioneel gebruik van AI\",\"Zoekmachineoptimalisatie\",\"Python automatisering\",\"SEO contentstrategie\u00ebn\"]},\"contactPoint\":{\"@type\":\"ContactPoint\",\"telephone\":\"+31657993310\",\"email\":\"info@learnllm.nl\",\"contactType\":\"customer support\",\"areaServed\":\"NL\",\"availableLanguage\":\"Dutch\"},\"address\":{\"@type\":\"PostalAddress\",\"streetAddress\":\"Philitelaan 61\",\"addressLocality\":\"Eindhoven\",\"postalCode\":\"5617 AJ\",\"addressCountry\":\"NL\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/learnllm.nl\\\/#\\\/schema\\\/person\\\/8f29cf7656af28444b77ef068871f098\",\"name\":\"Dennis van de Velde\",\"pronouns\":\"hij\\\/hem\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4040d56722338db3f251abac40ddd60fcb1168eb15eaaa863cea636e43b3cd8b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4040d56722338db3f251abac40ddd60fcb1168eb15eaaa863cea636e43b3cd8b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4040d56722338db3f251abac40ddd60fcb1168eb15eaaa863cea636e43b3cd8b?s=96&d=mm&r=g\",\"caption\":\"Dennis van de Velde\"},\"description\":\"Dennis van de Velde is SEO specialist bij Space'M Online en oprichter van LearnLLM.nl. Hij helpt professionals slimmer werken met AI-tools zoals ChatGPT, Claude en Gemini, door middel van praktische e-learning cursussen in het Nederlands.\",\"sameAs\":[\"http:\\\/\\\/learnllm.nl\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/dennisvandevelde\\\/\"],\"url\":\"https:\\\/\\\/learnllm.nl\\\/en\\\/author\\\/dennis-van-de-velde\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is prompt chaining? Explanations and tips | LearnLLM","description":"What is prompt chaining and when do you deploy it? Learn how to split tasks into steps for better results with ChatGPT and Claude.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/learnllm.nl\/en\/knowledge-base\/prompting\/prompt-chaining\/","og_locale":"en_GB","og_type":"article","og_title":"Wat is prompt chaining? Uitleg en tips | LearnLLM","og_description":"Wat is prompt chaining en wanneer zet je het in? Leer hoe je opdrachten opsplitst in stappen voor betere resultaten met ChatGPT en Claude.","og_url":"https:\/\/learnllm.nl\/en\/knowledge-base\/prompting\/prompt-chaining\/","og_site_name":"LearnLLM","article_published_time":"2026-04-17T07:00:00+00:00","og_image":[{"width":1792,"height":1024,"url":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/04\/prompt-chaining.png","type":"image\/png"}],"author":"Dennis van de Velde","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Dennis van de Velde","Estimated reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#article","isPartOf":{"@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/"},"author":{"@type":"Person","@id":"https:\/\/learnllm.nl\/en\/#founder","name":"Dennis van de Velde","url":"https:\/\/learnllm.nl\/over-learnllm\/","jobTitle":"Oprichter & SEO-specialist","sameAs":["https:\/\/www.linkedin.com\/in\/dennisvandevelde\/","https:\/\/github.com\/DennisvdVelde","https:\/\/medium.com\/@dennisvandevelde","https:\/\/hashnode.com\/@Dennisvandevelde"],"knowsAbout":["ChatGPT","Claude","Gemini","Perplexity","Grok","Grote taalmodellen","Generatieve AI","AI-workflows","Professioneel gebruik van AI","Zoekmachineoptimalisatie"]},"headline":"Wat is prompt chaining?","datePublished":"2026-04-17T07:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/"},"wordCount":1888,"commentCount":0,"publisher":{"@id":"https:\/\/learnllm.nl\/#organization"},"image":{"@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#primaryimage"},"thumbnailUrl":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/04\/prompt-chaining.png","articleSection":["Prompting"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/","url":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/","name":"What is prompt chaining? Explanations and tips | LearnLLM","isPartOf":{"@id":"https:\/\/learnllm.nl\/#website"},"primaryImageOfPage":{"@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#primaryimage"},"image":{"@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#primaryimage"},"thumbnailUrl":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/04\/prompt-chaining.png","datePublished":"2026-04-17T07:00:00+00:00","description":"What is prompt chaining and when do you deploy it? Learn how to split tasks into steps for better results with ChatGPT and Claude.","breadcrumb":{"@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#primaryimage","url":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/04\/prompt-chaining.png","contentUrl":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/04\/prompt-chaining.png","width":1792,"height":1024,"caption":"wat is prompt chaining"},{"@type":"BreadcrumbList","@id":"https:\/\/learnllm.nl\/kennisbank\/prompting\/prompt-chaining\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/learnllm.nl\/"},{"@type":"ListItem","position":2,"name":"Wat is prompt chaining?"}]},{"@type":"WebSite","@id":"https:\/\/learnllm.nl\/#website","url":"https:\/\/learnllm.nl\/","name":"LearnLLM","description":"Working professionally with AI","publisher":{"@id":"https:\/\/learnllm.nl\/#organization"},"alternateName":"LearnLLM","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/learnllm.nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Organization","EducationalOrganization"],"@id":"https:\/\/learnllm.nl\/#organization","name":"LearnLLM","alternateName":"LearnLLM","url":"https:\/\/learnllm.nl\/","logo":{"@type":"ImageObject","@id":"https:\/\/learnllm.nl\/en\/#logo","url":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/01\/LearnLLM-final-logo-1.png","contentUrl":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/01\/LearnLLM-final-logo-1.png","caption":"LearnLLM"},"image":{"@type":"ImageObject","@id":"https:\/\/learnllm.nl\/en\/#primaryimage","url":"https:\/\/learnllm.nl\/wp-content\/uploads\/2026\/01\/LearnLLM-final-logo-1.png"},"sameAs":["https:\/\/www.linkedin.com\/company\/learnllm\/","https:\/\/www.wikidata.org\/wiki\/Q138800572"],"foundingDate":"2026","telephone":"+31657993310","identifier":{"@type":"PropertyValue","propertyID":"KVK","value":"42035044"},"founder":{"@type":"Person","@id":"https:\/\/learnllm.nl\/en\/#founder","name":"Dennis van de Velde","jobTitle":"Oprichter & SEO-specialist","worksFor":{"@type":"Organization","@id":"https:\/\/learnllm.nl\/en\/#organization"},"sameAs":["https:\/\/www.linkedin.com\/in\/dennisvandevelde\/","https:\/\/github.com\/DennisvdVelde","https:\/\/medium.com\/@dennisvandevelde","https:\/\/www.facebook.com\/dennis.vandevelde.1","https:\/\/hashnode.com\/@Dennisvandevelde"],"knowsAbout":["ChatGPT","Claude","Gemini","Perplexity","Grok","Grote taalmodellen","Generatieve AI","AI-workflows","Professioneel gebruik van AI","Zoekmachineoptimalisatie","Python automatisering","SEO contentstrategie\u00ebn"]},"contactPoint":{"@type":"ContactPoint","telephone":"+31657993310","email":"info@learnllm.nl","contactType":"customer support","areaServed":"NL","availableLanguage":"Dutch"},"address":{"@type":"PostalAddress","streetAddress":"Philitelaan 61","addressLocality":"Eindhoven","postalCode":"5617 AJ","addressCountry":"NL"}},{"@type":"Person","@id":"https:\/\/learnllm.nl\/#\/schema\/person\/8f29cf7656af28444b77ef068871f098","name":"Dennis van de Velde","pronouns":"hij\/hem","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/4040d56722338db3f251abac40ddd60fcb1168eb15eaaa863cea636e43b3cd8b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4040d56722338db3f251abac40ddd60fcb1168eb15eaaa863cea636e43b3cd8b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4040d56722338db3f251abac40ddd60fcb1168eb15eaaa863cea636e43b3cd8b?s=96&d=mm&r=g","caption":"Dennis van de Velde"},"description":"Dennis van de Velde is SEO specialist at Space'M Online and founder of LearnLLM.nl. He helps professionals work smarter with AI tools such as ChatGPT, Claude and Gemini, through practical e-learning courses in Dutch.","sameAs":["http:\/\/learnllm.nl","https:\/\/www.linkedin.com\/in\/dennisvandevelde\/"],"url":"https:\/\/learnllm.nl\/en\/author\/dennis-van-de-velde\/"}]}},"_yoast_wpseo_title":"Wat is prompt chaining? Uitleg en tips | LearnLLM","_yoast_wpseo_metadesc":"Wat is prompt chaining en wanneer zet je het in? Leer hoe je opdrachten opsplitst in stappen voor betere resultaten met ChatGPT en Claude.","_links":{"self":[{"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/posts\/6382","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/comments?post=6382"}],"version-history":[{"count":3,"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/posts\/6382\/revisions"}],"predecessor-version":[{"id":15171,"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/posts\/6382\/revisions\/15171"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/media\/6381"}],"wp:attachment":[{"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/media?parent=6382"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/categories?post=6382"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/learnllm.nl\/en\/wp-json\/wp\/v2\/tags?post=6382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}