{"id":153,"date":"2026-09-09T08:01:18","date_gmt":"2026-09-09T08:01:18","guid":{"rendered":"https:\/\/www.dobryakov.net\/blog\/153\/"},"modified":"2026-09-09T08:01:18","modified_gmt":"2026-09-09T08:01:18","slug":"context-arbiter-hitl","status":"publish","type":"post","link":"https:\/\/www.dobryakov.net\/blog\/153\/","title":{"rendered":"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM"},"content":{"rendered":"<p>Manual context engineering looks straightforward: find the right information, stuff it into a prompt, get an adequate answer. While your context fits in a couple of paragraphs or is assembled by hand, that model works. No questions.<\/p>\n<p>The real trouble starts the moment context collection is handed to automation that parses dozens of files, databases, and third-party APIs. At that point, your context pipeline becomes a garbage chute.<\/p>\n<p><!--more--><\/p>\n<h2>Why automated collection breaks what manual collection handled<\/h2>\n<p>The root cause is simple: automated scripts collect data without semantic awareness. The script does not know what it is pulling \u2014 it pulls everything that matches a formal criterion. Three kinds of garbage land in a single prompt.<\/p>\n<p><strong>Different versions of truth.<\/strong> An instruction from 2021 documentation and a code fragment from a 2026 update that directly contradict each other. Both are valid as &quot;sources,&quot; both enter the context.<\/p>\n<p><strong>Mutually exclusive inputs.<\/strong> A log entry from two days ago where the system says &quot;user blocked,&quot; and today&#x27;s database record with status &quot;active.&quot; The script pulled both because both are about the same user.<\/p>\n<p><strong>Noise and source hallucination.<\/strong> Data from disparate services using identical terms for completely different things. The term matched, so the script decided it is relevant. It is not.<\/p>\n<p>Feed this salad to a target LLM and it behaves predictably badly. The model oscillates between extremes, produces mutually exclusive answers to the same query, or tries to &quot;average&quot; things that cannot be averaged. The output is confident nonsense that takes hours to untangle. The worst part: the target model did its job honestly. Garbage in, garbage out. The LLM is not at fault.<\/p>\n<h2>Interlayer arbitration: an extra stage between collection and resolution<\/h2>\n<p>To avoid turning the target LLM into a coin-flip guess, you insert one more stage into the data chain \u2014 an arbiter model, or Consistency Evaluator.<\/p>\n<p>The flow is: before the script-assembled context goes to the main model for the primary task, it runs through a separate, faster LLM tuned for logical analysis. This is not a replacement for the target model and not a more complex prompt \u2014 it is a dedicated checkpoint between collection and resolution.<\/p>\n<pre><code>[Data sources] \u2500\u2500&gt; [Collection script] \u2500\u2500&gt; [Arbiter model] \u2500\u2500\u252c\u2500\u2500&gt; (OK) \u2500\u2500\u2500\u2500\u2500\u2500&gt; [Target LLM]\n                                                              \u2514\u2500\u2500&gt; (Conflict) \u2500&gt; [HITL flag]<\/code><\/pre>\n<p>The arbiter&#x27;s job is not to solve the user&#x27;s task. Its job is to assess whether the context is fit for that task. It checks three things.<\/p>\n<p><strong>Detects logical holes.<\/strong> Checks whether Fragment A contradicts Fragment B.<\/p>\n<p><strong>Evaluates chronology.<\/strong> Filters stale inputs when fresher data on the same question exists in the context.<\/p>\n<p><strong>Classifies the conflict.<\/strong> Determines whether a discrepancy is a critical blocker or minor noise that can be filtered on the fly.<\/p>\n<p>Classification decides what gets escalated. Not every discrepancy warrants escalation. Minor noise \u2014 identical terms from different services, a stale row when a fresh one exists \u2014 the arbiter resolves itself and passes clean context forward. A hard contradiction that cannot be resolved without losing meaning is outside its responsibility.<\/p>\n<h2>When the machine needs a human<\/h2>\n<p>Hard contradictions go to HITL \u2014 Human-in-the-Loop.<\/p>\n<p>When the arbiter model sees that the context contains hard contradictions it cannot resolve without losing meaning, it does not try to guess the correct answer. This is the fundamental difference from the target LLM: the target, in the same situation, would confidently pick something and drive on. The arbiter instead raises a flag immediately \u2014 generates an alert, halts the pipeline, and sends the disputed context fragment to a human operator.<\/p>\n<p>The operator confirms the correct version, which goes back into the data sources. The context is then reassembled, and if no contradictions remain \u2014 only then does the clean, consistent context reach the target model. The fix goes into the source, not into a one-off prompt: a resolved contradiction will not resurface on the next collection run for the same query.<\/p>\n<h2>The cost of peace of mind: +1 step<\/h2>\n<p>The trade-off: yes, this adds one extra step to the architecture. The pipeline gets longer, there is one more model call, and on a hard conflict \u2014 a pause for a human.<\/p>\n<p>The &quot;direct&quot; scheme is more expensive when it fails. Spending 200 milliseconds and fractions of a cent on an evaluator model call beats getting an invalid result from an expensive LLM and sending the user nonsense generated from conflicting data. One arbiter call costs pennies and milliseconds; hours spent untangling confident nonsense cost engineering time and trust in the system.<\/p>\n<p>The direct scheme \u2014 collect, stuff into prompt \u2014 works exactly as long as a human assembles the context and holds its meaning in their head. The moment collection goes to automation, someone between the script and the target model needs to own input consistency. That is either another model that can say &quot;I won&#x27;t hazard a guess here,&quot; or a human it calls in time.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Automated context collection without semantic awareness funnels contradictory versions of truth into one prompt. A consistency evaluator model catches the conflicts before the target LLM generates confident nonsense.<\/p>\n","protected":false},"author":0,"featured_media":152,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-153","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.dobryakov.net\/blog\/153\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Grigoriy Dobryakov - IT+AI Blog - Grigoriy Dobryakov&#039;s blog: management, development and testing\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Context Arbiter: Consistency Evaluator Between Collection and LLM\" \/>\n\t\t<meta property=\"og:description\" content=\"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.dobryakov.net\/blog\/153\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-09-09T08:01:18+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-09-09T08:01:18+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Context Arbiter: Consistency Evaluator Between Collection and LLM\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#blogposting\",\"name\":\"Context Arbiter: Consistency Evaluator Between Collection and LLM\",\"headline\":\"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM\",\"author\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/author\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/context-arbiter-hitl.jpg\",\"width\":1200,\"height\":630,\"caption\":\"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM\"},\"datePublished\":\"2026-09-09T08:01:18+00:00\",\"dateModified\":\"2026-09-09T08:01:18+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#webpage\"},\"articleSection\":\"Uncategorized\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/uncategorized\\\/#listItem\",\"position\":2,\"name\":\"Uncategorized\",\"item\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/uncategorized\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#listItem\",\"name\":\"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#listItem\",\"position\":3,\"name\":\"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#organization\",\"name\":\"Grigoriy Dobryakov - IT+AI Blog\",\"description\":\"Grigoriy Dobryakov's blog: management, development and testing\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#webpage\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/\",\"name\":\"Context Arbiter: Consistency Evaluator Between Collection and LLM\",\"description\":\"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/author\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/author\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/context-arbiter-hitl.jpg\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#mainImage\",\"width\":1200,\"height\":630,\"caption\":\"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/153\\\/#mainImage\"},\"datePublished\":\"2026-09-09T08:01:18+00:00\",\"dateModified\":\"2026-09-09T08:01:18+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/\",\"name\":\"Grigoriy Dobryakov - IT+AI Blog\",\"description\":\"Grigoriy Dobryakov's blog: management, development and testing\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Context Arbiter: Consistency Evaluator Between Collection and LLM","description":"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.","canonical_url":"https:\/\/www.dobryakov.net\/blog\/153\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.dobryakov.net\/blog\/153\/#blogposting","name":"Context Arbiter: Consistency Evaluator Between Collection and LLM","headline":"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM","author":{"@id":"https:\/\/www.dobryakov.net\/blog\/author\/#author"},"publisher":{"@id":"https:\/\/www.dobryakov.net\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.dobryakov.net\/blog\/wp-content\/uploads\/2026\/09\/context-arbiter-hitl.jpg","width":1200,"height":630,"caption":"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM"},"datePublished":"2026-09-09T08:01:18+00:00","dateModified":"2026-09-09T08:01:18+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.dobryakov.net\/blog\/153\/#webpage"},"isPartOf":{"@id":"https:\/\/www.dobryakov.net\/blog\/153\/#webpage"},"articleSection":"Uncategorized"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dobryakov.net\/blog\/153\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.dobryakov.net\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/category\/uncategorized\/#listItem","name":"Uncategorized"}},{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/category\/uncategorized\/#listItem","position":2,"name":"Uncategorized","item":"https:\/\/www.dobryakov.net\/blog\/category\/uncategorized\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/153\/#listItem","name":"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/153\/#listItem","position":3,"name":"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM","previousItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/category\/uncategorized\/#listItem","name":"Uncategorized"}}]},{"@type":"Organization","@id":"https:\/\/www.dobryakov.net\/blog\/#organization","name":"Grigoriy Dobryakov - IT+AI Blog","description":"Grigoriy Dobryakov's blog: management, development and testing","url":"https:\/\/www.dobryakov.net\/blog\/"},{"@type":"WebPage","@id":"https:\/\/www.dobryakov.net\/blog\/153\/#webpage","url":"https:\/\/www.dobryakov.net\/blog\/153\/","name":"Context Arbiter: Consistency Evaluator Between Collection and LLM","description":"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.dobryakov.net\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.dobryakov.net\/blog\/153\/#breadcrumblist"},"author":{"@id":"https:\/\/www.dobryakov.net\/blog\/author\/#author"},"creator":{"@id":"https:\/\/www.dobryakov.net\/blog\/author\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.dobryakov.net\/blog\/wp-content\/uploads\/2026\/09\/context-arbiter-hitl.jpg","@id":"https:\/\/www.dobryakov.net\/blog\/153\/#mainImage","width":1200,"height":630,"caption":"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM"},"primaryImageOfPage":{"@id":"https:\/\/www.dobryakov.net\/blog\/153\/#mainImage"},"datePublished":"2026-09-09T08:01:18+00:00","dateModified":"2026-09-09T08:01:18+00:00"},{"@type":"WebSite","@id":"https:\/\/www.dobryakov.net\/blog\/#website","url":"https:\/\/www.dobryakov.net\/blog\/","name":"Grigoriy Dobryakov - IT+AI Blog","description":"Grigoriy Dobryakov's blog: management, development and testing","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.dobryakov.net\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Grigoriy Dobryakov - IT+AI Blog - Grigoriy Dobryakov's blog: management, development and testing","og:type":"article","og:title":"Context Arbiter: Consistency Evaluator Between Collection and LLM","og:description":"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.","og:url":"https:\/\/www.dobryakov.net\/blog\/153\/","article:published_time":"2026-09-09T08:01:18+00:00","article:modified_time":"2026-09-09T08:01:18+00:00","twitter:card":"summary_large_image","twitter:title":"Context Arbiter: Consistency Evaluator Between Collection and LLM","twitter:description":"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags."},"aioseo_meta_data":{"post_id":"153","title":"Context Arbiter: Consistency Evaluator Between Collection and LLM","description":"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"Context Arbiter: Consistency Evaluator Between Collection and LLM","og_description":"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.","og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":"Context Arbiter: Consistency Evaluator Between Collection and LLM","twitter_description":"Automated context collection feeds contradictory data into one prompt. A consistency evaluator model catches conflicts, classifies blockers, and raises HITL flags.","schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-09-09 08:01:23","updated":"2026-09-09 08:01:23"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.dobryakov.net\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.dobryakov.net\/blog\/category\/uncategorized\/\" title=\"Uncategorized\">Uncategorized<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tYour Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.dobryakov.net\/blog"},{"label":"Uncategorized","link":"https:\/\/www.dobryakov.net\/blog\/category\/uncategorized\/"},{"label":"Your Context Pipeline Is a Garbage Chute: The Arbiter Model Between Collection and the Target LLM","link":"https:\/\/www.dobryakov.net\/blog\/153\/"}],"_links":{"self":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/posts\/153","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/comments?post=153"}],"version-history":[{"count":0,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/posts\/153\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/media\/152"}],"wp:attachment":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/media?parent=153"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/categories?post=153"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/tags?post=153"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}