{"id":79818,"date":"2026-03-29T14:44:51","date_gmt":"2026-03-29T14:44:51","guid":{"rendered":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/"},"modified":"2026-03-29T14:44:51","modified_gmt":"2026-03-29T14:44:51","slug":"chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation","status":"publish","type":"post","link":"https:\/\/youzum.net\/ja\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/","title":{"rendered":"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation"},"content":{"rendered":"<p>In the current AI landscape, the \u2018context window\u2019 has become a blunt instrument. We\u2019ve been told that if we simply expand the memory of a frontier model, the retrieval problem disappears. But as any AI professionals building RAG (Retrieval-Augmented Generation) systems knows, stuffing a million tokens into a prompt often leads to higher latency, astronomical costs, and a \u2018lost in the middle\u2019 reasoning failure that no amount of compute seems to fully solve.<\/p>\n<p>Chroma, the company behind the popular open-source vector database, is taking a different, more surgical approach. They released <strong>Context-1<\/strong>, a 20B parameter agentic search model designed to act as a specialized retrieval subagent.<\/p>\n<p>Rather than trying to be a general-purpose reasoning engine, Context-1 is a highly optimized \u2018scout.\u2019 It is built to do one thing: find the right supporting documents for complex, multi-hop queries and hand them off to a downstream frontier model for the final answer.<\/p>\n<h3 class=\"wp-block-heading\"><strong>The Rise of the Agentic Subagent<\/strong><\/h3>\n<p>Context-1 is derived from <strong>gpt-oss-20B<\/strong>, a Mixture of Experts (MoE) architecture that Chroma has fine-tuned using a combination of Supervised Fine-Tuning (SFT) and Reinforcement Learning (RL) via <strong>CISPO<\/strong> (a staged curriculum optimization).<sup><\/sup><\/p>\n<p>The goal isn\u2019t just to retrieve chunks; it\u2019s to execute a <strong>sequential reasoning task<\/strong>.<sup><\/sup> When a user asks a complex question, Context-1 doesn\u2019t just hit a vector index once. It decomposes the high-level query into targeted subqueries, executes parallel tool calls (averaging 2.56 calls per turn), and iteratively searches the corpus.<sup><\/sup><\/p>\n<p>For AI professionals, the architectural shift here is the most important takeaway: <strong>Decoupling Search from Generation.<\/strong> In a traditional RAG pipeline, the developer manages the retrieval logic. With Context-1, that responsibility is shifted to the model itself. It operates inside a specific agent harness that allows it to interact with tools like <code>search_corpus<\/code> (hybrid BM25 + dense search), <code>grep_corpus<\/code> (regex), and <code>read_document<\/code>.<\/p>\n<h3 class=\"wp-block-heading\"><strong>The Killer Feature: Self-Editing Context<\/strong><\/h3>\n<p>The most technically significant innovation in Context-1 is <strong>Self-Editing Context<\/strong>.<sup><\/sup><\/p>\n<p>As an agent gathers information over multiple turns, its context window fills up with documents\u2014many of which turn out to be redundant or irrelevant to the final answer. General models eventually \u2018choke\u2019 on this noise. Context-1, however, has been trained with a <strong>pruning accuracy of 0.94<\/strong>.<\/p>\n<p>Mid-search, the model reviews its accumulated context and proactively executes a <code>prune_chunks<\/code> command to discard irrelevant passages. This \u2018soft limit pruning\u2019 keeps the context window lean, freeing up capacity for deeper exploration and preventing the \u2018context rot\u2019 that plagues longer reasoning chains. This allows a specialized 20B model to maintain high retrieval quality within a bounded 32k context, even when navigating datasets that would typically require much larger windows.<\/p>\n<h3 class=\"wp-block-heading\"><strong>Building the \u2018Leak-Proof\u2019 Benchmark: <code>context-1-data-gen<\/code><\/strong><\/h3>\n<p>To train and evaluate a model on multi-hop reasoning, you need data where the \u2018ground truth\u2019 is known and requires multiple steps to reach. Chroma has open-sourced the tool they used to solve this: the <a href=\"https:\/\/github.com\/chroma-core\/context-1-data-gen\" target=\"_blank\" rel=\"noreferrer noopener\">context-1-data-gen<\/a> repository.<\/p>\n<p>The pipeline avoids the pitfalls of static benchmarks by generating synthetic multi-hop tasks across four specific domains:<sup><\/sup><\/p>\n<ul class=\"wp-block-list\">\n<li><strong>Web:<\/strong> Multi-step research tasks from the open web.<\/li>\n<li><strong>SEC:<\/strong> Finance tasks involving SEC filings (10-K, 20-F).<\/li>\n<li><strong>Patents:<\/strong> Legal tasks focusing on USPTO prior-art search.<\/li>\n<li><strong>Email:<\/strong> Search tasks using the Epstein files and Enron corpus.<\/li>\n<\/ul>\n<p>The data generation follows a rigorous <strong>Explore \u2192 Verify \u2192 Distract \u2192 Index<\/strong> pattern. It generates \u2018clues\u2019 and \u2018questions\u2019 where the answer can only be found by bridging information across multiple documents. By mining \u2018topical distractors\u2019\u2014documents that look relevant but are logically useless\u2014Chroma ensures that the model cannot \u2018hallucinate\u2019 its way to a correct answer through simple keyword matching.<\/p>\n<h3 class=\"wp-block-heading\"><strong>Performance: Faster, Cheaper, and Competitive with GPT-5<\/strong><\/h3>\n<p>The benchmark results released by Chroma are a reality check for the \u2018frontier-only\u2019 crowd. Context-1 was evaluated against 2026-era heavyweights including <strong>gpt-oss-120b<\/strong>, <strong>gpt-5.2<\/strong>, <strong>gpt-5.4<\/strong>, and the <strong>Sonnet\/Opus 4.5 and 4.6<\/strong> families.<\/p>\n<p>Across public benchmarks like <strong>BrowseComp-Plus<\/strong>, <strong>SealQA<\/strong>, <strong>FRAMES<\/strong>, and <strong>HotpotQA<\/strong>, Context-1 demonstrated retrieval performance comparable to frontier models that are orders of magnitude larger.<sup><\/sup><\/p>\n<p><strong>The most compelling metrics for AI devs are the efficiency gains:<\/strong><\/p>\n<ul class=\"wp-block-list\">\n<li><strong>Speed:<\/strong> Context-1 offers up to <strong>10x faster inference<\/strong> than general-purpose frontier models.<\/li>\n<li><strong>Cost:<\/strong> It is approximately <strong>25x cheaper<\/strong> to run for the same retrieval tasks.<\/li>\n<li><strong>Pareto Frontier:<\/strong> By using a \u20184x\u2019 configuration\u2014running four Context-1 agents in parallel and merging results via reciprocal rank fusion\u2014it matches the accuracy of a single GPT-5.4 run at a fraction of the compute.<\/li>\n<\/ul>\n<p>The \u2018performance cliff\u2019 identified isn\u2019t about token length alone; it\u2019s about <strong>hop-count<\/strong>. As the number of reasoning steps increases, general models often fail to sustain the search trajectory. Context-1\u2019s specialized training allows it to navigate these deeper chains more reliably because it isn\u2019t distracted by the \u2018answering\u2019 task until the search is concluded.<\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1440\" height=\"916\" data-attachment-id=\"78681\" data-permalink=\"https:\/\/www.marktechpost.com\/2026\/03\/29\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/screenshot-2026-03-29-at-1-21-10-am-2\/\" data-orig-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1.png\" data-orig-size=\"1440,916\" data-comments-opened=\"1\" data-image-meta='{\"aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\"}' data-image-title=\"Screenshot 2026-03-29 at 1.21.10\u202fAM\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-300x191.png\" data-large-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-1024x651.png\" src=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1.png\" alt=\"\" class=\"wp-image-78681\" \/><figcaption class=\"wp-element-caption\">https:\/\/www.trychroma.com\/research\/context-1<\/figcaption><\/figure>\n<\/div>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img decoding=\"async\" width=\"1472\" height=\"908\" data-attachment-id=\"78683\" data-permalink=\"https:\/\/www.marktechpost.com\/2026\/03\/29\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/screenshot-2026-03-29-at-1-21-48-am-2\/\" data-orig-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.48-AM-1.png\" data-orig-size=\"1472,908\" data-comments-opened=\"1\" data-image-meta='{\"aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\"}' data-image-title=\"Screenshot 2026-03-29 at 1.21.48\u202fAM\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.48-AM-1-300x185.png\" data-large-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.48-AM-1-1024x632.png\" src=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.48-AM-1.png\" alt=\"\" class=\"wp-image-78683\" \/><figcaption class=\"wp-element-caption\">https:\/\/www.trychroma.com\/research\/context-1<\/figcaption><\/figure>\n<\/div>\n<h3 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h3>\n<ul class=\"wp-block-list\">\n<li><strong>The \u2018Scout\u2019 Model Strategy:<\/strong> Context-1 is a specialized 20B parameter agentic search model (derived from gpt-oss-20B) designed to act as a retrieval subagent, proving that a lean, specialized model can outperform massive general-purpose LLMs in multi-hop search.<\/li>\n<li><strong>Self-Editing Context:<\/strong> To solve the problem of \u2018context rot,\u2019 the model features a pruning accuracy of 0.94, allowing it to proactively discard irrelevant documents mid-search to keep its context window focused and high-signal.<\/li>\n<li><strong>Leak-Proof Benchmarking:<\/strong> The open-sourced <code>context-1-data-gen<\/code> tool uses a synthetic \u2018Explore \u2192 Verify \u2192 Distract\u2019 pipeline to create multi-hop tasks in Web, SEC, Patent, and Email domains, ensuring models are tested on reasoning rather than memorized data.<\/li>\n<li><strong>Decoupled Efficiency:<\/strong> By focusing solely on retrieval, Context-1 achieves 10x faster inference and 25x lower costs than frontier models like GPT-5.4, while matching their accuracy on complex benchmarks like HotpotQA and FRAMES.<\/li>\n<li><strong>The Tiered RAG Future:<\/strong> This release champions a tiered architecture where a high-speed subagent curates a \u2018golden context\u2019 for a downstream frontier model, effectively solving the latency and reasoning failures of massive, unmanaged context windows.<\/li>\n<\/ul>\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n<p>Check out\u00a0the\u00a0<strong><a href=\"https:\/\/github.com\/chroma-core\/context-1-data-gen\" target=\"_blank\" rel=\"noreferrer noopener\">Repo<\/a> <\/strong>and<strong> <a href=\"https:\/\/www.trychroma.com\/research\/context-1\" target=\"_blank\" rel=\"noreferrer noopener\">Technical details<\/a>.\u00a0<\/strong>Also,\u00a0feel free to follow us on\u00a0<strong><a href=\"https:\/\/x.com\/intent\/follow?screen_name=marktechpost\" target=\"_blank\" rel=\"noreferrer noopener\"><mark>Twitter<\/mark><\/a><\/strong>\u00a0and don\u2019t forget to join our\u00a0<strong><a href=\"https:\/\/www.reddit.com\/r\/machinelearningnews\/\" target=\"_blank\" rel=\"noreferrer noopener\">120k+ ML SubReddit<\/a><\/strong>\u00a0and Subscribe to\u00a0<strong><a href=\"https:\/\/www.aidevsignals.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">our Newsletter<\/a><\/strong>. Wait! are you on telegram?\u00a0<strong><a href=\"https:\/\/t.me\/machinelearningresearchnews\" target=\"_blank\" rel=\"noreferrer noopener\">now you can join us on telegram as well.<\/a><\/strong><\/p>\n<p>The post <a href=\"https:\/\/www.marktechpost.com\/2026\/03\/29\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\">Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation<\/a> appeared first on <a href=\"https:\/\/www.marktechpost.com\/\">MarkTechPost<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>In the current AI landscape, the \u2018context window\u2019 has become a blunt instrument. We\u2019ve been told that if we simply expand the memory of a frontier model, the retrieval problem disappears. But as any AI professionals building RAG (Retrieval-Augmented Generation) systems knows, stuffing a million tokens into a prompt often leads to higher latency, astronomical costs, and a \u2018lost in the middle\u2019 reasoning failure that no amount of compute seems to fully solve. Chroma, the company behind the popular open-source vector database, is taking a different, more surgical approach. They released Context-1, a 20B parameter agentic search model designed to act as a specialized retrieval subagent. Rather than trying to be a general-purpose reasoning engine, Context-1 is a highly optimized \u2018scout.\u2019 It is built to do one thing: find the right supporting documents for complex, multi-hop queries and hand them off to a downstream frontier model for the final answer. The Rise of the Agentic Subagent Context-1 is derived from gpt-oss-20B, a Mixture of Experts (MoE) architecture that Chroma has fine-tuned using a combination of Supervised Fine-Tuning (SFT) and Reinforcement Learning (RL) via CISPO (a staged curriculum optimization). The goal isn\u2019t just to retrieve chunks; it\u2019s to execute a sequential reasoning task. When a user asks a complex question, Context-1 doesn\u2019t just hit a vector index once. It decomposes the high-level query into targeted subqueries, executes parallel tool calls (averaging 2.56 calls per turn), and iteratively searches the corpus. For AI professionals, the architectural shift here is the most important takeaway: Decoupling Search from Generation. In a traditional RAG pipeline, the developer manages the retrieval logic. With Context-1, that responsibility is shifted to the model itself. It operates inside a specific agent harness that allows it to interact with tools like search_corpus (hybrid BM25 + dense search), grep_corpus (regex), and read_document. The Killer Feature: Self-Editing Context The most technically significant innovation in Context-1 is Self-Editing Context. As an agent gathers information over multiple turns, its context window fills up with documents\u2014many of which turn out to be redundant or irrelevant to the final answer. General models eventually \u2018choke\u2019 on this noise. Context-1, however, has been trained with a pruning accuracy of 0.94. Mid-search, the model reviews its accumulated context and proactively executes a prune_chunks command to discard irrelevant passages. This \u2018soft limit pruning\u2019 keeps the context window lean, freeing up capacity for deeper exploration and preventing the \u2018context rot\u2019 that plagues longer reasoning chains. This allows a specialized 20B model to maintain high retrieval quality within a bounded 32k context, even when navigating datasets that would typically require much larger windows. Building the \u2018Leak-Proof\u2019 Benchmark: context-1-data-gen To train and evaluate a model on multi-hop reasoning, you need data where the \u2018ground truth\u2019 is known and requires multiple steps to reach. Chroma has open-sourced the tool they used to solve this: the context-1-data-gen repository. The pipeline avoids the pitfalls of static benchmarks by generating synthetic multi-hop tasks across four specific domains: Web: Multi-step research tasks from the open web. SEC: Finance tasks involving SEC filings (10-K, 20-F). Patents: Legal tasks focusing on USPTO prior-art search. Email: Search tasks using the Epstein files and Enron corpus. The data generation follows a rigorous Explore \u2192 Verify \u2192 Distract \u2192 Index pattern. It generates \u2018clues\u2019 and \u2018questions\u2019 where the answer can only be found by bridging information across multiple documents. By mining \u2018topical distractors\u2019\u2014documents that look relevant but are logically useless\u2014Chroma ensures that the model cannot \u2018hallucinate\u2019 its way to a correct answer through simple keyword matching. Performance: Faster, Cheaper, and Competitive with GPT-5 The benchmark results released by Chroma are a reality check for the \u2018frontier-only\u2019 crowd. Context-1 was evaluated against 2026-era heavyweights including gpt-oss-120b, gpt-5.2, gpt-5.4, and the Sonnet\/Opus 4.5 and 4.6 families. Across public benchmarks like BrowseComp-Plus, SealQA, FRAMES, and HotpotQA, Context-1 demonstrated retrieval performance comparable to frontier models that are orders of magnitude larger. The most compelling metrics for AI devs are the efficiency gains: Speed: Context-1 offers up to 10x faster inference than general-purpose frontier models. Cost: It is approximately 25x cheaper to run for the same retrieval tasks. Pareto Frontier: By using a \u20184x\u2019 configuration\u2014running four Context-1 agents in parallel and merging results via reciprocal rank fusion\u2014it matches the accuracy of a single GPT-5.4 run at a fraction of the compute. The \u2018performance cliff\u2019 identified isn\u2019t about token length alone; it\u2019s about hop-count. As the number of reasoning steps increases, general models often fail to sustain the search trajectory. Context-1\u2019s specialized training allows it to navigate these deeper chains more reliably because it isn\u2019t distracted by the \u2018answering\u2019 task until the search is concluded. https:\/\/www.trychroma.com\/research\/context-1 https:\/\/www.trychroma.com\/research\/context-1 Key Takeaways The \u2018Scout\u2019 Model Strategy: Context-1 is a specialized 20B parameter agentic search model (derived from gpt-oss-20B) designed to act as a retrieval subagent, proving that a lean, specialized model can outperform massive general-purpose LLMs in multi-hop search. Self-Editing Context: To solve the problem of \u2018context rot,\u2019 the model features a pruning accuracy of 0.94, allowing it to proactively discard irrelevant documents mid-search to keep its context window focused and high-signal. Leak-Proof Benchmarking: The open-sourced context-1-data-gen tool uses a synthetic \u2018Explore \u2192 Verify \u2192 Distract\u2019 pipeline to create multi-hop tasks in Web, SEC, Patent, and Email domains, ensuring models are tested on reasoning rather than memorized data. Decoupled Efficiency: By focusing solely on retrieval, Context-1 achieves 10x faster inference and 25x lower costs than frontier models like GPT-5.4, while matching their accuracy on complex benchmarks like HotpotQA and FRAMES. The Tiered RAG Future: This release champions a tiered architecture where a high-speed subagent curates a \u2018golden context\u2019 for a downstream frontier model, effectively solving the latency and reasoning failures of massive, unmanaged context windows. Check out\u00a0the\u00a0Repo and Technical details.\u00a0Also,\u00a0feel free to follow us on\u00a0Twitter\u00a0and don\u2019t forget to join our\u00a0120k+ ML SubReddit\u00a0and Subscribe to\u00a0our Newsletter. Wait! are you on telegram?\u00a0now you can join us on telegram as well. The post Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation appeared first on<\/p>","protected":false},"author":2,"featured_media":79819,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"pmpro_default_level":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_pvb_checkbox_block_on_post":false,"footnotes":""},"categories":[52,5,7,1],"tags":[],"class_list":["post-79818","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-club","category-committee","category-news","category-uncategorized","pmpro-has-access"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation - YouZum<\/title>\n<meta name=\"description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youzum.net\/ja\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation - YouZum\" \/>\n<meta property=\"og:description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youzum.net\/ja\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\" \/>\n<meta property=\"og:site_name\" content=\"YouZum\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DroneAssociationTH\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-29T14:44:51+00:00\" \/>\n<meta name=\"author\" content=\"admin NU\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin NU\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\"},\"author\":{\"name\":\"admin NU\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\"},\"headline\":\"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation\",\"datePublished\":\"2026-03-29T14:44:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\"},\"wordCount\":1040,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"image\":{\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png\",\"articleSection\":[\"AI\",\"Committee\",\"News\",\"Uncategorized\"],\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\",\"url\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\",\"name\":\"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation - YouZum\",\"isPartOf\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png\",\"datePublished\":\"2026-03-29T14:44:51+00:00\",\"description\":\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\",\"breadcrumb\":{\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png\",\"width\":1440,\"height\":916},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/youzum.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yousum.gpucore.co\/#website\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"name\":\"YouSum\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yousum.gpucore.co\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\",\"name\":\"Drone Association Thailand\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"width\":300,\"height\":300,\"caption\":\"Drone Association Thailand\"},\"image\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/DroneAssociationTH\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\",\"name\":\"admin NU\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"caption\":\"admin NU\"},\"url\":\"https:\/\/youzum.net\/ja\/members\/adminnu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation - YouZum","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","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:\/\/youzum.net\/ja\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/","og_locale":"ja_JP","og_type":"article","og_title":"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation - YouZum","og_description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","og_url":"https:\/\/youzum.net\/ja\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/","og_site_name":"YouZum","article_publisher":"https:\/\/www.facebook.com\/DroneAssociationTH\/","article_published_time":"2026-03-29T14:44:51+00:00","author":"admin NU","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"admin NU","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"5\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#article","isPartOf":{"@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/"},"author":{"name":"admin NU","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c"},"headline":"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation","datePublished":"2026-03-29T14:44:51+00:00","mainEntityOfPage":{"@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/"},"wordCount":1040,"commentCount":0,"publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"image":{"@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage"},"thumbnailUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png","articleSection":["AI","Committee","News","Uncategorized"],"inLanguage":"ja","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/","url":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/","name":"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation - YouZum","isPartOf":{"@id":"https:\/\/yousum.gpucore.co\/#website"},"primaryImageOfPage":{"@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage"},"image":{"@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage"},"thumbnailUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png","datePublished":"2026-03-29T14:44:51+00:00","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","breadcrumb":{"@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#primaryimage","url":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png","width":1440,"height":916},{"@type":"BreadcrumbList","@id":"https:\/\/youzum.net\/chroma-releases-context-1-a-20b-agentic-search-model-for-multi-hop-retrieval-context-management-and-scalable-synthetic-task-generation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youzum.net\/"},{"@type":"ListItem","position":2,"name":"Chroma Releases Context-1: A 20B Agentic Search Model for Multi-Hop Retrieval, Context Management, and Scalable Synthetic Task Generation"}]},{"@type":"WebSite","@id":"https:\/\/yousum.gpucore.co\/#website","url":"https:\/\/yousum.gpucore.co\/","name":"YouSum","description":"","publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yousum.gpucore.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Organization","@id":"https:\/\/yousum.gpucore.co\/#organization","name":"Drone Association Thailand","url":"https:\/\/yousum.gpucore.co\/","logo":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","width":300,"height":300,"caption":"Drone Association Thailand"},"image":{"@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DroneAssociationTH\/"]},{"@type":"Person","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c","name":"admin NU","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","caption":"admin NU"},"url":"https:\/\/youzum.net\/ja\/members\/adminnu\/"}]}},"rttpg_featured_image_url":{"full":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png",1440,916,false],"landscape":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png",1440,916,false],"portraits":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png",1440,916,false],"thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO-150x150.png",150,150,true],"medium":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO-300x191.png",300,191,true],"large":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO-1024x651.png",1024,651,true],"1536x1536":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png",1440,916,false],"2048x2048":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO.png",1440,916,false],"trp-custom-language-flag":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO-18x12.png",18,12,true],"woocommerce_thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO-300x300.png",300,300,true],"woocommerce_single":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO-600x382.png",600,382,true],"woocommerce_gallery_thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/03\/Screenshot-2026-03-29-at-1.21.10-AM-1-EN3fnO-100x100.png",100,100,true]},"rttpg_author":{"display_name":"admin NU","author_link":"https:\/\/youzum.net\/ja\/members\/adminnu\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/youzum.net\/ja\/category\/ai-club\/\" rel=\"category tag\">AI<\/a> <a href=\"https:\/\/youzum.net\/ja\/category\/committee\/\" rel=\"category tag\">Committee<\/a> <a href=\"https:\/\/youzum.net\/ja\/category\/news\/\" rel=\"category tag\">News<\/a> <a href=\"https:\/\/youzum.net\/ja\/category\/uncategorized\/\" rel=\"category tag\">Uncategorized<\/a>","rttpg_excerpt":"In the current AI landscape, the \u2018context window\u2019 has become a blunt instrument. We\u2019ve been told that if we simply expand the memory of a frontier model, the retrieval problem disappears. But as any AI professionals building RAG (Retrieval-Augmented Generation) systems knows, stuffing a million tokens into a prompt often leads to higher latency, astronomical&hellip;","_links":{"self":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/posts\/79818","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/comments?post=79818"}],"version-history":[{"count":0,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/posts\/79818\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/media\/79819"}],"wp:attachment":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/media?parent=79818"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/categories?post=79818"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/tags?post=79818"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}