{"id":633,"date":"2025-07-04T02:23:31","date_gmt":"2025-07-04T07:23:31","guid":{"rendered":"https:\/\/virtualhomelab.win\/?p=633"},"modified":"2025-07-04T02:46:05","modified_gmt":"2025-07-04T07:46:05","slug":"build-your-own-private-ai-assistant-the-complete-guide-to-installing-ollama-and-open-webui-on-windows","status":"publish","type":"post","link":"https:\/\/virtualhomelab.win\/index.php\/2025\/07\/04\/build-your-own-private-ai-assistant-the-complete-guide-to-installing-ollama-and-open-webui-on-windows\/","title":{"rendered":"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows"},"content":{"rendered":"<p>Transform your Windows PC into a powerful, privacy-first AI workstation that rivals ChatGPT \u2013 all running locally on your machine<\/p>\n<p>The AI revolution is here, but why should you be dependent on cloud services, subscription fees, and data privacy concerns when you can run cutting-edge large language models right on your own hardware? Today, we&#8217;re diving deep into creating your personal AI ecosystem using two game-changing tools:\u00a0Ollama\u00a0and\u00a0Open WebUI.<\/p>\n<p>Whether you&#8217;re a data scientist exploring local model deployment, a privacy-conscious developer, or simply an AI enthusiast who wants unlimited access to powerful language models, this guide will walk you through building your own ChatGPT-like experience that runs entirely offline.<\/p>\n<p>Why Local AI Matters More Than Ever<\/p>\n<p>Before we jump into the technical setup, let&#8217;s talk about why this matters. Running AI models locally gives you:<\/p>\n<p>Complete Privacy: Your conversations never leave your machine<\/p>\n<p>Unlimited Usage: No token limits, rate restrictions, or monthly fees<\/p>\n<p>Customization Freedom: Fine-tune models for your specific needs<\/p>\n<p>Always Available: No internet dependency for AI assistance<\/p>\n<p>Learning Opportunities: Understand how modern AI actually works under the hood<\/p>\n<p>The combination of Ollama (for model management) and Open WebUI (for the interface) creates a seamless experience that feels just like using ChatGPT, but with all the benefits of local deployment.<\/p>\n<p>What You&#8217;ll Need: System Requirements<\/p>\n<p>Let&#8217;s be realistic about hardware requirements. While you can run smaller models on modest hardware, here&#8217;s what we recommend for the best experience:<\/p>\n<p>Minimum Setup:<\/p>\n<p>Windows 10\/11 (64-bit)<\/p>\n<p>16GB RAM (8GB absolute minimum)<\/p>\n<p>Modern multi-core CPU (Intel i5 10th gen or AMD Ryzen 5 3000 series)<\/p>\n<p>50GB free storage (SSD highly recommended)<\/p>\n<p>Enthusiast Setup:<\/p>\n<p>32GB+ RAM<\/p>\n<p>Recent high-end CPU<\/p>\n<p>NVIDIA RTX 3060 or better (for GPU acceleration)<\/p>\n<p>1TB+ NVMe SSD<\/p>\n<p>Part 1: Installing Ollama \u2013 Your Local Model Manager<\/p>\n<p>Ollama is the secret sauce that makes running local LLMs as easy as downloading an app. Think of it as Docker for AI models \u2013 it handles all the complex backend work while giving you simple commands to manage everything.<\/p>\n<p>Getting Ollama Up and Running<\/p>\n<p>Step 1: Download and Install<br \/>\nHead to\u00a0ollama.com\u00a0and grab the Windows installer. The website is clean and straightforward \u2013 you can&#8217;t miss the download button. Run the installer as administrator (this is crucial for proper system integration).<\/p>\n<p>The installation wizard is refreshingly simple. Accept the license, choose your installation directory (the default\u00a0C:\\Program Files\\Ollama\u00a0works perfectly), and let it do its magic.<\/p>\n<p>Step 2: Verify Your Installation<br \/>\nOpen Command Prompt and type\u00a0ollama &#8211;version. If you see version information, you&#8217;re golden! If not, a quick reboot usually fixes any PATH issues.<\/p>\n<p>Step 3: Download Your First Model<br \/>\nHere&#8217;s where the magic starts. Run\u00a0ollama pull llama3.1\u00a0to download Meta&#8217;s excellent Llama 3.1 model. This 4.7GB download gives you a highly capable AI assistant that rivals many commercial offerings.<\/p>\n<p>Pro tip: While it&#8217;s downloading, explore the\u00a0Ollama model library\u00a0to see what other models are available. From coding assistants to creative writing specialists, there&#8217;s a model for every use case.<\/p>\n<p>Step 4: Test Drive Your Model<br \/>\nRun\u00a0ollama run llama3.1\u00a0and you&#8217;ll drop into a chat interface right in your terminal. Try asking it to write some Python code or explain a complex concept \u2013 you&#8217;ll be amazed at the quality of responses from your local setup.<\/p>\n<p>Part 2: Open WebUI \u2013 Your Gateway to Local AI<\/p>\n<p>While Ollama&#8217;s command-line interface is powerful, Open WebUI transforms your local AI into a beautiful, web-based experience that feels like a premium AI service.<\/p>\n<p>Method 1: Docker Installation (Recommended for Tech Enthusiasts)<\/p>\n<p>Docker provides the cleanest, most reliable installation experience. Plus, it makes updates and management much easier down the road.<\/p>\n<p>Setting Up Docker Desktop<br \/>\nDownload Docker Desktop from docker.com and install it. After installation, restart your computer and launch Docker Desktop. Wait for the &#8220;Docker Desktop is running&#8221; notification in your system tray.<\/p>\n<p>Launching Open WebUI<br \/>\nCopy and paste this command into Command Prompt (run as administrator):<\/p>\n<p>bashdocker run -d -p 3000:8080 &#8211;add-host=host.docker.internal:host-gateway -v open-webui:\/app\/backend\/data &#8211;name open-webui &#8211;restart always ghcr.io\/open-webui\/open-webui:ollama<\/p>\n<p>This single command downloads, configures, and starts Open WebUI with all the right settings for Ollama integration.<\/p>\n<p>First Login Experience<br \/>\nNavigate to\u00a0http:\/\/localhost:3000\u00a0in your browser. You&#8217;ll be greeted with a clean registration page where you create your admin account. This is your personal AI assistant \u2013 no external sign-ups required!<\/p>\n<p>Method 2: Direct Python Installation (For Python Developers)<\/p>\n<p>If you prefer working directly with Python environments:<\/p>\n<p>bashpip install open-webui<br \/>\nopen-webui serve<\/p>\n<p>Then access your interface at\u00a0http:\/\/localhost:8080.<\/p>\n<p>Part 3: Connecting the Pieces<\/p>\n<p>The beauty of this setup is that Open WebUI automatically detects your local Ollama installation. In the Open WebUI interface, you&#8217;ll see your downloaded models in the dropdown menu. Select your model, and you&#8217;re ready to start chatting!<\/p>\n<p>Advanced Configuration Tips:<\/p>\n<p>Navigate to Settings \u2192 Connections \u2192 Ollama to verify the connection (http:\/\/localhost:11434)<\/p>\n<p>Explore model parameters like temperature and context length for different use cases<\/p>\n<p>Set up multiple models for different tasks (coding, writing, analysis)<\/p>\n<p>Power User Features to Explore<\/p>\n<p>Once you have the basics running, here are some advanced features that make this setup truly powerful:<\/p>\n<p>Model Experimentation: Try different models for different tasks. Llama 3.1 for general chat, CodeLlama for programming, or Mistral for focused analysis.<\/p>\n<p>Custom System Prompts: Configure your AI assistant with specific personalities or expertise areas through system prompts.<\/p>\n<p>Document Upload: Open WebUI supports document analysis, letting you chat with your PDFs and text files.<\/p>\n<p>API Access: Use Ollama&#8217;s REST API to integrate with your own applications and scripts.<\/p>\n<p>Troubleshooting Common Issues<\/p>\n<p>Ollama Command Not Recognized: Restart your computer to refresh environment variables, or manually add Ollama to your Windows PATH.<\/p>\n<p>Open WebUI Can&#8217;t Connect: Ensure Ollama is running (ollama serve\u00a0in command prompt) and check that Windows Firewall isn&#8217;t blocking port 11434.<\/p>\n<p>Slow Performance: Monitor your RAM usage \u2013 if you&#8217;re maxing out system memory, try smaller models or increase your virtual memory.<\/p>\n<p>Docker Issues: Enable virtualization in your BIOS settings and ensure Windows WSL2 is properly installed.<\/p>\n<p>The Future is Local<\/p>\n<p>What you&#8217;ve just built represents a significant shift in how we interact with AI technology. Instead of being dependent on external services, you now have a powerful, private AI assistant that grows with your needs.<\/p>\n<p>This setup opens doors to experimentation that simply isn&#8217;t possible with commercial AI services. Want to fine-tune a model on your specific data? Interested in exploring different architectures? Need guaranteed uptime for critical projects? Your local AI environment makes all of this possible.<\/p>\n<p>What&#8217;s Next?<\/p>\n<p>Your AI journey is just beginning. Consider exploring:<\/p>\n<p>Model Fine-tuning: Customize models for your specific use cases<\/p>\n<p>Multi-model Workflows: Chain different models for complex tasks<\/p>\n<p>Integration Projects: Build applications that leverage your local AI<\/p>\n<p>Hardware Optimization: Experiment with GPU acceleration for even better performance<\/p>\n<p>Join the Local AI Revolution<\/p>\n<p>The democratization of AI technology means that powerful language models are no longer the exclusive domain of large tech companies. With Ollama and Open WebUI, you&#8217;ve joined a growing community of users who prioritize privacy, control, and innovation.<\/p>\n<p>Ready to take your local AI setup to the next level? Start experimenting with different models, explore the extensive customization options, and most importantly \u2013 enjoy having unlimited conversations with your very own AI assistant.<\/p>\n<p>Have questions about your setup or want to share your local AI experiences? The Ollama and Open WebUI communities are incredibly welcoming to newcomers and always ready to help troubleshoot or suggest optimizations.<\/p>\n<p>Quick Start Summary:<\/p>\n<p>Install Ollama from ollama.com<\/p>\n<p>Download a model with\u00a0ollama pull llama3.1<\/p>\n<p>Install Docker Desktop and run the Open WebUI container<\/p>\n<p>Access your AI at\u00a0http:\/\/localhost:3000<\/p>\n<p>Start chatting with your private AI assistant!<\/p>\n<p>The future of AI is local, private, and powerful \u2013 and it&#8217;s running on your Windows machine right now.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Transform your Windows PC into a powerful, privacy-first AI workstation that rivals ChatGPT \u2013 all running locally on your machine The AI revolution is here, but why should you be dependent on cloud services, subscription fees, and data privacy concerns when you can run cutting-edge large language models right on your own hardware? Today, we&#8217;re [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":634,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-633","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows - Virtual Homelab Portal<\/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:\/\/virtualhomelab.win\/?p=633\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows - Virtual Homelab Portal\" \/>\n<meta property=\"og:description\" content=\"Transform your Windows PC into a powerful, privacy-first AI workstation that rivals ChatGPT \u2013 all running locally on your machine The AI revolution is here, but why should you be dependent on cloud services, subscription fees, and data privacy concerns when you can run cutting-edge large language models right on your own hardware? Today, we&#8217;re [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualhomelab.win\/?p=633\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Homelab Portal\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-04T07:23:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-04T07:46:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"686\" \/>\n\t<meta property=\"og:image:height\" content=\"386\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"editor@virtualhomelab.win\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"editor@virtualhomelab.win\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtualhomelab.win\/?p=633#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtualhomelab.win\/?p=633\"},\"author\":{\"name\":\"editor@virtualhomelab.win\",\"@id\":\"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0\"},\"headline\":\"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows\",\"datePublished\":\"2025-07-04T07:23:31+00:00\",\"dateModified\":\"2025-07-04T07:46:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtualhomelab.win\/?p=633\"},\"wordCount\":1325,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0\"},\"image\":{\"@id\":\"https:\/\/virtualhomelab.win\/?p=633#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp\",\"articleSection\":[\"Tech\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtualhomelab.win\/?p=633#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtualhomelab.win\/?p=633\",\"url\":\"https:\/\/virtualhomelab.win\/?p=633\",\"name\":\"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows - Virtual Homelab Portal\",\"isPartOf\":{\"@id\":\"https:\/\/virtualhomelab.win\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtualhomelab.win\/?p=633#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtualhomelab.win\/?p=633#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp\",\"datePublished\":\"2025-07-04T07:23:31+00:00\",\"dateModified\":\"2025-07-04T07:46:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/virtualhomelab.win\/?p=633#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualhomelab.win\/?p=633\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualhomelab.win\/?p=633#primaryimage\",\"url\":\"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp\",\"contentUrl\":\"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp\",\"width\":686,\"height\":386},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualhomelab.win\/?p=633#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualhomelab.win\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtualhomelab.win\/#website\",\"url\":\"https:\/\/virtualhomelab.win\/\",\"name\":\"Virtual Homelab Protal\",\"description\":\"WordPress site about Technology, current events and Games\",\"publisher\":{\"@id\":\"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtualhomelab.win\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0\",\"name\":\"editor@virtualhomelab.win\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualhomelab.win\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/virtualhomelab-logo.webp\",\"contentUrl\":\"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/virtualhomelab-logo.webp\",\"width\":1205,\"height\":310,\"caption\":\"editor@virtualhomelab.win\"},\"logo\":{\"@id\":\"https:\/\/virtualhomelab.win\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/virtualhomelab.win\"],\"url\":\"https:\/\/virtualhomelab.win\/index.php\/author\/b8434cdcbaa800a6\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows - Virtual Homelab Portal","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:\/\/virtualhomelab.win\/?p=633","og_locale":"en_US","og_type":"article","og_title":"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows - Virtual Homelab Portal","og_description":"Transform your Windows PC into a powerful, privacy-first AI workstation that rivals ChatGPT \u2013 all running locally on your machine The AI revolution is here, but why should you be dependent on cloud services, subscription fees, and data privacy concerns when you can run cutting-edge large language models right on your own hardware? Today, we&#8217;re [&hellip;]","og_url":"https:\/\/virtualhomelab.win\/?p=633","og_site_name":"Virtual Homelab Portal","article_published_time":"2025-07-04T07:23:31+00:00","article_modified_time":"2025-07-04T07:46:05+00:00","og_image":[{"width":686,"height":386,"url":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp","type":"image\/webp"}],"author":"editor@virtualhomelab.win","twitter_card":"summary_large_image","twitter_misc":{"Written by":"editor@virtualhomelab.win","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtualhomelab.win\/?p=633#article","isPartOf":{"@id":"https:\/\/virtualhomelab.win\/?p=633"},"author":{"name":"editor@virtualhomelab.win","@id":"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0"},"headline":"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows","datePublished":"2025-07-04T07:23:31+00:00","dateModified":"2025-07-04T07:46:05+00:00","mainEntityOfPage":{"@id":"https:\/\/virtualhomelab.win\/?p=633"},"wordCount":1325,"commentCount":0,"publisher":{"@id":"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0"},"image":{"@id":"https:\/\/virtualhomelab.win\/?p=633#primaryimage"},"thumbnailUrl":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp","articleSection":["Tech"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtualhomelab.win\/?p=633#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtualhomelab.win\/?p=633","url":"https:\/\/virtualhomelab.win\/?p=633","name":"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows - Virtual Homelab Portal","isPartOf":{"@id":"https:\/\/virtualhomelab.win\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtualhomelab.win\/?p=633#primaryimage"},"image":{"@id":"https:\/\/virtualhomelab.win\/?p=633#primaryimage"},"thumbnailUrl":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp","datePublished":"2025-07-04T07:23:31+00:00","dateModified":"2025-07-04T07:46:05+00:00","breadcrumb":{"@id":"https:\/\/virtualhomelab.win\/?p=633#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualhomelab.win\/?p=633"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualhomelab.win\/?p=633#primaryimage","url":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp","contentUrl":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp","width":686,"height":386},{"@type":"BreadcrumbList","@id":"https:\/\/virtualhomelab.win\/?p=633#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualhomelab.win\/"},{"@type":"ListItem","position":2,"name":"Build Your Own Private AI Assistant: The Complete Guide to Installing Ollama and Open WebUI on Windows"}]},{"@type":"WebSite","@id":"https:\/\/virtualhomelab.win\/#website","url":"https:\/\/virtualhomelab.win\/","name":"Virtual Homelab Protal","description":"WordPress site about Technology, current events and Games","publisher":{"@id":"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtualhomelab.win\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/virtualhomelab.win\/#\/schema\/person\/187852797e216e7bf786ba1c8e56aab0","name":"editor@virtualhomelab.win","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualhomelab.win\/#\/schema\/person\/image\/","url":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/virtualhomelab-logo.webp","contentUrl":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/virtualhomelab-logo.webp","width":1205,"height":310,"caption":"editor@virtualhomelab.win"},"logo":{"@id":"https:\/\/virtualhomelab.win\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/virtualhomelab.win"],"url":"https:\/\/virtualhomelab.win\/index.php\/author\/b8434cdcbaa800a6\/"}]}},"jetpack_featured_media_url":"https:\/\/virtualhomelab.win\/wp-content\/uploads\/2025\/06\/Using-Ollama-with-a-Web-Based-GUI.webp","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/posts\/633","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/comments?post=633"}],"version-history":[{"count":1,"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/posts\/633\/revisions"}],"predecessor-version":[{"id":635,"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/posts\/633\/revisions\/635"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/media\/634"}],"wp:attachment":[{"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/media?parent=633"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/categories?post=633"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualhomelab.win\/index.php\/wp-json\/wp\/v2\/tags?post=633"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}