{"id":1526,"date":"2026-06-24T20:49:02","date_gmt":"2026-06-24T19:49:02","guid":{"rendered":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/"},"modified":"2026-06-24T20:49:12","modified_gmt":"2026-06-24T19:49:12","slug":"using-visual-studio-codes-air-gapped-ai-model-mode","status":"publish","type":"post","link":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/","title":{"rendered":"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode"},"content":{"rendered":"<div class=\"anp-pro-entry\">\n<p class=\"anp-pro-lead\">The topic <strong>Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode<\/strong> is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments.<\/p>\n<p class=\"anp-pro-p\">This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture.<\/p>\n<p class=\"anp-pro-p\">Microsoft has been pushing hard to make Visual Studio Code a major way to consume its AI services, mostly in the form of GitHub Copilot. GitHub Copilot\u2019s deep integration with VS Code brings many conveniences \u2014 inline autocomplete, for instance \u2014 but it\u2019s frustrating for those, like me, who would rather use another model provider, or even a locally hosted LLM, for those functions.<\/p>\n<p class=\"anp-pro-p\">Visual Studio Code 1.122 introduced a new feature, \u201cUse BYOK [Bring Your Own Key] without a GitHub sign-in,\u201d that allows you to \u201cuse chat, tools, and MCP servers in air-gapped or restricted environments where GitHub sign-in isn\u2019t possible.\u201d More importantly, it \u201cenables fully offline workflows with local models like Ollama.\u201d<\/p>\n<p class=\"anp-pro-p\">In other words, you can now use locally hosted LLMs for chat, tools, and Model Context Protocol servers inside Visual Studio Code. The one thing you still can\u2019t do is use a local LLM for inline and next-edit suggestions \u2014 at least, not without additional tooling.<\/p>\n<p class=\"anp-pro-p\">If you want to use a local LLM with VS Code\u2019s bring-your-own-model system, the first thing you need is a way to host the model. VS Code lacks a model-hosting mechanism of its own, although it\u2019s conceivable that a VS Code extension may offer something like that in future. That said, hosting models is complicated enough that a dedicated app is really needed for the job.<\/p>\n<p class=\"anp-pro-p\">One easy way to host models is via a product like LM Studio, a convenient GUI for standing up, serving, and managing LLMs on one\u2019s own hardware. The model host does not have to be the same system you run VS Code on, either. It can be on a server box you control, or on a cloud instance.<\/p>\n<figure class=\"anp-pro-inline-figure\" style=\"margin:1.75em auto;text-align:center;max-width:100%\"><img decoding=\"async\" class=\"anp-pro-inline-img\" src=\"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/image_155.png\" alt=\"\" style=\"display:block;margin:0 auto;max-width:100%;width:auto;height:auto;object-fit:contain;object-position:center\" loading=\"lazy\"><\/figure>\n<p class=\"anp-pro-p\">The choice of model is also important. Many models are powerful but won\u2019t run well on commodity hardware because they\u2019re simply too big. A good rule of thumb is to choose a model that fits into existing VRAM, along with the memory needed for a sizable token context (the more, the better). Also, the model should be suited to coding and development work. Some models in this vein that fit comfortably into 8GB VRAM include:<\/p>\n<p class=\"anp-pro-p\">Once you have a model up and running, you can integrate it with Visual Studio Code. If you\u2019ve disabled VS Code\u2019s AI features, you will need to turn them on. Make sure the setting chat.disableAIFeatures is turned off. You can find it in Settings | Chat | Miscellaneous.<\/p>\n<p class=\"anp-pro-p\">Third-party language models are managed through Visual Studio Code\u2019s language model list. Press Ctrl-Shift-P and type Manage Language Models to open the list of existing language models.<\/p>\n<p class=\"anp-pro-p\">Managing VS Code\u2019s AI language model list. The models available by default are only models available as external APIs, not models that run locally.<\/p>\n<p class=\"anp-pro-p\">First you will see a list of the built-in models, which are all externally hosted. To add a new model, select Add Models at the top right and select Custom Endpoint.<\/p>\n<p class=\"anp-pro-p\">Once you finish providing those answers, you\u2019ll be dropped into a modal editor for a JSON file that holds the details about the endpoint you\u2019re configuring.<\/p>\n<p class=\"anp-pro-p\">A newly created custom endpoint for a locally hosted model. The ID, name, and URL still need to be defined for this model to be useful.<\/p>\n<figure class=\"anp-pro-inline-figure\" style=\"margin:1.75em auto;text-align:center;max-width:100%\"><img decoding=\"async\" class=\"anp-pro-inline-img\" src=\"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/image_399.png\" alt=\"\" style=\"display:block;margin:0 auto;max-width:100%;width:auto;height:auto;object-fit:contain;object-position:center\" loading=\"lazy\"><\/figure>\n<p class=\"anp-pro-p\">You\u2019ll need to provide a few more details by typing them into the labeled fields:<\/p>\n<p class=\"anp-pro-p\">The other fields generally don\u2019t need editing. Most models have tool calling functionality. If you know for a fact that the model you\u2019re using doesn\u2019t have vision support, then set vision to false.<\/p>\n<p class=\"anp-pro-p\">Once you have these fields filled in, you can close the modal editor to save the changes. If you reload the Manage Language Models page, you\u2019ll now see your new endpoint:<\/p>\n<p class=\"anp-pro-p\">A newly created local endpoint. The choice of name and group is arbitrary. \u201cCustom Endpoint\u201d is the default name for a newly created group of endpoints.<\/p>\n<p class=\"anp-pro-p\">You should now be able to launch the chat window and use the defined model for conversation and utilities:<\/p>\n<p class=\"anp-pro-p\">Conversing with the local model using VS Code\u2019s chat window. Note the selected code block in the left pane that is being used as the context for the conversation.<\/p>\n<p class=\"anp-pro-p\">One current, and major, limitation of Visual Studio Code\u2019s BYOK functionality is that it only works for chat and utility tasks. It doesn\u2019t allow you to use a local model for inline suggestions or code completions. The only way to take advantage of local models for expanded functionality with VS Code is to use a third-party tool like Continue.<\/p>\n<p class=\"anp-pro-p\">It isn\u2019t clear if Microsoft will eventually lift this restriction. GitHub Copilot integration in VS Code is a large part of how Copilot as a service reaches its target audience. For the time being, you can certainly use third-party and local models for a significant part of your AI-assisted development work in VS Code, and you can close the functionality gap with additional tooling.<\/p>\n<aside class=\"anp-pro-aside\" aria-label=\"context\">\n<p class=\"anp-pro-kicker\">Why it matters<\/p>\n<p class=\"anp-pro-p\">News like this often changes audience expectations and competitors\u2019 plans.<\/p>\n<p class=\"anp-pro-p\">When one player makes a move, others usually react \u2014 it is worth reading the event in context.<\/p>\n<\/aside>\n<aside class=\"anp-pro-aside\" aria-label=\"outlook\">\n<p class=\"anp-pro-kicker\">What to look out for next<\/p>\n<p class=\"anp-pro-p\">The full picture will become clear in time, but the headline already shows the dynamics of the industry.<\/p>\n<p class=\"anp-pro-p\">Further statements and user reactions will add to the story.<\/p>\n<\/aside>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The topic Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments. This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture. Microsoft has been pushing hard to make Visual Studio [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":1527,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[208,227,413,567,568],"class_list":["post-1526","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-entertainment","tag-code","tag-model","tag-models","tag-studio","tag-visual"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode - entertainmentnews.site<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode - entertainmentnews.site\" \/>\n<meta property=\"og:description\" content=\"The topic Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments. This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture. Microsoft has been pushing hard to make Visual Studio [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/\" \/>\n<meta property=\"og:site_name\" content=\"entertainmentnews.site\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-24T19:49:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-24T19:49:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1706\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode\",\"datePublished\":\"2026-06-24T19:49:02+00:00\",\"dateModified\":\"2026-06-24T19:49:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/\"},\"wordCount\":955,\"image\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg\",\"keywords\":[\"Code\",\"Model\",\"Models\",\"Studio\",\"Visual\"],\"articleSection\":[\"Entertainment\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/\",\"url\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/\",\"name\":\"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode - entertainmentnews.site\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg\",\"datePublished\":\"2026-06-24T19:49:02+00:00\",\"dateModified\":\"2026-06-24T19:49:12+00:00\",\"author\":{\"@id\":\"\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/#primaryimage\",\"url\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg\",\"width\":2560,\"height\":1706},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/06\\\/24\\\/using-visual-studio-codes-air-gapped-ai-model-mode\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/entertainmentnews.site\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/#website\",\"url\":\"https:\\\/\\\/entertainmentnews.site\\\/\",\"name\":\"entertainmentnews.site\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/entertainmentnews.site\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode - entertainmentnews.site","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:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/","og_locale":"en_GB","og_type":"article","og_title":"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode - entertainmentnews.site","og_description":"The topic Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments. This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture. Microsoft has been pushing hard to make Visual Studio [&hellip;]","og_url":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/","og_site_name":"entertainmentnews.site","article_published_time":"2026-06-24T19:49:02+00:00","article_modified_time":"2026-06-24T19:49:12+00:00","og_image":[{"width":2560,"height":1706,"url":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/#article","isPartOf":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/"},"author":{"name":"","@id":""},"headline":"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode","datePublished":"2026-06-24T19:49:02+00:00","dateModified":"2026-06-24T19:49:12+00:00","mainEntityOfPage":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/"},"wordCount":955,"image":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg","keywords":["Code","Model","Models","Studio","Visual"],"articleSection":["Entertainment"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/","url":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/","name":"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode - entertainmentnews.site","isPartOf":{"@id":"https:\/\/entertainmentnews.site\/#website"},"primaryImageOfPage":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/#primaryimage"},"image":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg","datePublished":"2026-06-24T19:49:02+00:00","dateModified":"2026-06-24T19:49:12+00:00","author":{"@id":""},"breadcrumb":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/#primaryimage","url":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg","contentUrl":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/06\/4186817-0-11047300-1782291747-shutterstock_2079263023-100942489-orig-scaled.jpg","width":2560,"height":1706},{"@type":"BreadcrumbList","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/06\/24\/using-visual-studio-codes-air-gapped-ai-model-mode\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/entertainmentnews.site\/"},{"@type":"ListItem","position":2,"name":"Using Visual Studio Code\u2019s \u2018air-gapped\u2019 AI model mode"}]},{"@type":"WebSite","@id":"https:\/\/entertainmentnews.site\/#website","url":"https:\/\/entertainmentnews.site\/","name":"entertainmentnews.site","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/entertainmentnews.site\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}},"_links":{"self":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts\/1526","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/comments?post=1526"}],"version-history":[{"count":1,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts\/1526\/revisions"}],"predecessor-version":[{"id":1532,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts\/1526\/revisions\/1532"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/media\/1527"}],"wp:attachment":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/media?parent=1526"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/categories?post=1526"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/tags?post=1526"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}