{"id":13765,"date":"2026-05-30T09:45:58","date_gmt":"2026-05-30T08:45:58","guid":{"rendered":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/"},"modified":"2026-05-30T09:46:01","modified_gmt":"2026-05-30T08:46:01","slug":"i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the","status":"publish","type":"post","link":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/","title":{"rendered":"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026"},"content":{"rendered":"<div class=\"anp-pro-entry\">\n<p class=\"anp-pro-lead\">The topic <strong>I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026<\/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\">Whether it\u2019s Perplexity\u2019s reliable and transparent nature or Claude Code\u2019s programming capabilities, there\u2019s no denying that cloud-based large language models can be a godsend for productivity. Most cloud LLMs ship with beginner-friendly UIs, and the fact that you don\u2019t have to put in extra work just to get them up and running makes them pretty convenient for the average user.<\/p>\n<p class=\"anp-pro-p\">But I\u2019ve spent the last couple of months moving away from cloud LLMs for my everyday tasks, partly since I don\u2019t want external servers gaining access to my data, and also because I\u2019d rather avoid the extra charges incurred by paid API usage. After migrating through a bunch of setups, I\u2019ve honed in on a local LLM server running on my old Proxmox workstation, and it works surprisingly well for everything from simple prompting to OCR analysis, voice assistant inference backend, and automation pipelines.<\/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:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/llama-cpp-lxc-13.jpg\" alt=\"\" style=\"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\">Like most LLM-hosting enthusiasts, I started my journey by hosting local models on Ollama, and it served me well for the first couple of weeks. After all, pulling LLMs and deploying them is a piece of cake on Ollama, with a bunch of self-hosted apps supporting this inference engine natively. However, its extra performance overhead and lack of advanced tools became pretty apparent once I started looking into ways to maximize the efficiency on my local models. Once I started wanting to run bulky models (and I\u2019ll go over them in a bit), it became clear that Ollama won\u2019t work well for my needs, so I switched to llama.cpp instead.<\/p>\n<p class=\"anp-pro-p\">Rather, I began using the llama-server functionality to create an LLM server that remains operational 24\/7 and hooks up to the rest of my FOSS arsenal thanks to its OpenAI-compatible API. I also went with a Proxmox LXC, as I can still share my old graphics card with Immich, Frigate, and other apps that need its computational prowess when my LLMs are inactive. Thanks to GPU passthrough, my llama-server LXC gets native-level performance, and I\u2019ve upped its RAM resources all the way to 24GB (out of 32GB) to ensure it can fit MoE models (and I\u2019ll go over them in a bit). On my aged system, I simply ran the ls -l \/dev\/nvidia* command to get the device IDs (195, 235, and 237 for my GPU), pasted the following syntax into the LXC\u2019s config file, and installed the graphics card drivers inside the LXC to configure GPU passthrough, before compiling llama.cpp\u2019s Vulkan variant.<\/p>\n<p class=\"anp-pro-p\">During my Ollama days, I was starting to get frustrated by the accuracy (or rather, the lack thereof) of local models. Sure, 4B, 7B, and even 9B models could handle simple inference requests, but anything requiring detailed troubleshooting or complex reasoning would be too much for them to handle \u2013 and in some cases, they\u2019d end up spouting complete nonsense. That\u2019s when I started looking into bulkier models \u2013 LLMs that could crunch 20B+ parameters. But considering that my broke self only has a Pascal card (specifically, a GTX 1080), I couldn\u2019t run conventional models without using the &#8211;ngl flag to offload entire layers from my GPU and causing the performance to plummet.<\/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:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/llama-cpp-lxc-14.jpg\" alt=\"\" style=\"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\">However, Mixture of Experts models let me offload the less frequently accessed resources onto my CPU and RAM, with the attention weights and other demanding units still remaining on my GPU. As such, I can host models like GPT-OSS-20B and Gemma4-26B-A4B on my VRAM-starved card at respectable token rates, with the latter even managing 15+ t\/s with a fairly large context window.<\/p>\n<p class=\"anp-pro-p\">As for their reasoning capabilities, I\u2019d say they&#8217;re solid competitors to cloud models. While I still prefer the Qwen3.6-35B-A3B for hardcore coding tasks, Gemma4 is pretty effective at rewriting code, providing autosuggestions, and aiding my troubleshooting needs. Likewise, it has yet to hallucinate or provide irrelevant information when I use it for RAG analysis in Paperless AI, Open Notebook, and Blinko. While we\u2019re on this subject\u2026<\/p>\n<p class=\"anp-pro-p\">Besides its terrific performance, llama-server also deploys an interface for accessing LLMs via a web browser \u2013 and it\u2019s fairly useful for simple prompts and queries. It even supports MCP servers, and as long as I set the context window fairly high (and run the &#8211;webui-mcp-proxy flag), I have no issues controlling Obsidian, Home Assistant, TrueNAS, and a bunch of other apps via MCP tools on llama-server\u2019s web interface.<\/p>\n<p class=\"anp-pro-p\">However, I prefer Open WebUI for the majority of my tasks, and its ChatGPT-like interface makes it fairly accessible. But the real draw of Open WebUI is the sheer number of customization options and integrations that I can pair it (and by extension, my llama-server LLMs) with. There\u2019s the open terminal facility, which lets me execute Python code on the browser, and connecting it with SearXNG lets my Gemma4 instance access websites on the Internet instead of relying solely on its trained knowledge base. It even supports ComfyUI, and I often use Open WebUI to trigger the upscaling workflows I\u2019ve configured on the app.<\/p>\n<p class=\"anp-pro-p\">I\u2019ve been building my LLM pipelines for a couple of months, and it\u2019s really mind-boggling how much you can accomplish with them. Once you venture past the 20B mark, the reasoning capabilities of self-hosted models skyrocket to the point where they\u2019re good enough to replace their cloud counterparts for coding workloads. And with MoE models becoming more popular, it\u2019s possible to run competent clankers without dealing with slow token generation rates on an old GPU or throwing thousands of bucks on a new system.<\/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 I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 &hellip; <a title=\"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026\" class=\"hm-read-more\" href=\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\"><span class=\"screen-reader-text\">I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026<\/span>Read more<\/a><\/p>\n","protected":false},"author":0,"featured_media":13766,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[452,2204,887,888,816],"class_list":["post-13765","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-innovate","tag-cloud","tag-llama-server","tag-llms","tag-local","tag-models"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 - innovatenews.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:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 - innovatenews.site\" \/>\n<meta property=\"og:description\" content=\"The topic I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 &hellip; I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\" \/>\n<meta property=\"og:site_name\" content=\"innovatenews.site\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-30T08:45:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-30T08:46:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\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=\"Est. 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:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026\",\"datePublished\":\"2026-05-30T08:45:58+00:00\",\"dateModified\":\"2026-05-30T08:46:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\"},\"wordCount\":1065,\"image\":{\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg\",\"keywords\":[\"Cloud\",\"Llama-server\",\"Llms\",\"Local\",\"Models\"],\"articleSection\":[\"Innovate\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\",\"url\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\",\"name\":\"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 - innovatenews.site\",\"isPartOf\":{\"@id\":\"https:\/\/innovatenews.site\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg\",\"datePublished\":\"2026-05-30T08:45:58+00:00\",\"dateModified\":\"2026-05-30T08:46:01+00:00\",\"author\":{\"@id\":\"\"},\"breadcrumb\":{\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage\",\"url\":\"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg\",\"contentUrl\":\"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg\",\"width\":1600,\"height\":900},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/innovatenews.site\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/innovatenews.site\/#website\",\"url\":\"https:\/\/innovatenews.site\/\",\"name\":\"innovatenews.site\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/innovatenews.site\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 - innovatenews.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:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/","og_locale":"en_US","og_type":"article","og_title":"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 - innovatenews.site","og_description":"The topic I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 &hellip; I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026Read more","og_url":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/","og_site_name":"innovatenews.site","article_published_time":"2026-05-30T08:45:58+00:00","article_modified_time":"2026-05-30T08:46:01+00:00","og_image":[{"width":1600,"height":900,"url":"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#article","isPartOf":{"@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/"},"author":{"name":"","@id":""},"headline":"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026","datePublished":"2026-05-30T08:45:58+00:00","dateModified":"2026-05-30T08:46:01+00:00","mainEntityOfPage":{"@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/"},"wordCount":1065,"image":{"@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage"},"thumbnailUrl":"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg","keywords":["Cloud","Llama-server","Llms","Local","Models"],"articleSection":["Innovate"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/","url":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/","name":"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026 - innovatenews.site","isPartOf":{"@id":"https:\/\/innovatenews.site\/#website"},"primaryImageOfPage":{"@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage"},"image":{"@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage"},"thumbnailUrl":"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg","datePublished":"2026-05-30T08:45:58+00:00","dateModified":"2026-05-30T08:46:01+00:00","author":{"@id":""},"breadcrumb":{"@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#primaryimage","url":"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg","contentUrl":"https:\/\/innovatenews.site\/wp-content\/uploads\/2026\/05\/gemma4.jpg","width":1600,"height":900},{"@type":"BreadcrumbList","@id":"https:\/\/innovatenews.site\/index.php\/2026\/05\/30\/i-replaced-cloud-llms-with-local-models-running-off-a-proxmox-lxc-and-the\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/innovatenews.site\/"},{"@type":"ListItem","position":2,"name":"I replaced cloud LLMs with local models running off a Proxmox LXC, and the\u2026"}]},{"@type":"WebSite","@id":"https:\/\/innovatenews.site\/#website","url":"https:\/\/innovatenews.site\/","name":"innovatenews.site","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/innovatenews.site\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/posts\/13765","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/comments?post=13765"}],"version-history":[{"count":1,"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/posts\/13765\/revisions"}],"predecessor-version":[{"id":13769,"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/posts\/13765\/revisions\/13769"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/media\/13766"}],"wp:attachment":[{"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/media?parent=13765"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/categories?post=13765"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/innovatenews.site\/index.php\/wp-json\/wp\/v2\/tags?post=13765"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}