{"id":2048,"date":"2026-09-06T11:51:59","date_gmt":"2026-09-06T09:51:59","guid":{"rendered":"https:\/\/christeninformatica.ch\/?p=2048"},"modified":"2026-09-09T22:28:17","modified_gmt":"2026-09-09T20:28:17","slug":"how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf","status":"publish","type":"post","link":"https:\/\/christeninformatica.ch\/it\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/","title":{"rendered":"How to Create Customized LLMs (AI Assistants) Using Ollama"},"content":{"rendered":"<h2>What is Ollama?<\/h2>\n<p>Ollama is an application that allows users to <b>run large language models (LLMs) locally and privately<\/b>. It provides an interface for <b>deploying and managing LLMs<\/b>, enabling organizations and individuals to leverage the power of LLMs while maintaining control over their data and infrastructure.<\/p>\n<p>With <b>ollama<\/b> you can easily deploy and <b>manage LLMs<\/b>, customize their settings, and integrate them with existing applications and services. The tool also provides features such as model management, data management, and security controls, making it an attractive option for organizations looking to adopt LLMs in a secure manner.<\/p>\n<p>This tutorial is an introduction on <b>how to use ollama to run LLMs locally and privately<\/b>. <\/p>\n<p>To run LLMs privately using ollama you have to:<\/p>\n<ul>\n<li>Install ollama.<\/li>\n<li>Deploy a large language model.<\/li>\n<li>Integrate with existing applications.<\/li>\n<li>Use the model for tasks such as text generation, classification, or question-answering.<\/li>\n<\/ul>\n<p>For more information on how to <b>install ollama and run a LLM<\/b> read: <a href=\"https:\/\/christeninformatica.ch\/it\/tutorial-getting-started-ollama-beginners-guide-installing-using-ai-models-llama-llava\/\" title=\"How to Install and Run AI Models (LLMs) using Ollama\" target=\"_blank\">Getting Started with Ollama: How to Install and Use AI Models<\/a>.<\/p>\n<h2>How to Create Customized LLMs (AI Assistants)<\/h2>\n<p>There are a lot of things you can customize to modify the behavior and character or personality of <b>LLMs<\/b> to better fit one owns objectives. You can <b>finetune your LLM by using PARAMETERS<\/b> and give the AI assistant a name and a personality. <\/p>\n<p>To create a customized models (LLMs) you use a \u201cModelfile\u201d, a text file with all the Instructions and Parameters, for example, pllm.txt. <\/p>\n<p>You start with the Instruction on what LLM to use, for example: \u201cFROM llama3.1:8b\u201d.<\/p>\n<h3>List of Instructions<\/h3>\n<ul>\n<li><b>FROM<\/b> &#8211; Defines the base model to use.<\/li>\n<li><b>PARAMETER<\/b> &#8211; Sets the parameters for how Ollama will run the model.<\/li>\n<li><b>TEMPLATE<\/b> &#8211; The full prompt template to be sent to the model.<\/li>\n<li><b>SYSTEM<\/b> &#8211; Specifies the system message that will be set in the template.<\/li>\n<li><b>ADAPTER<\/b> &#8211; Defines the (Q)LoRA adapters to apply to the model.<\/li>\n<li><b>LICENSE<\/b> &#8211; Specifies the legal license.<\/li>\n<li><b>MESSAGE<\/b> &#8211; Specify message history.<\/li>\n<li><b>REQUIRES<\/b> &#8211; Specify the minimum version of Ollama required by the model.<\/li>\n<\/ul>\n<h3>List of Parameters<\/h3>\n<p>Here are some parameters to customize LLMs:<\/p>\n<ul>\n<li><b>Temperature<\/b>: Controls the level of creativity and randomness in the model\u2019s output.<\/li>\n<li><b>Top-k<\/b>: Limits the number of possible next tokens to consider when generating text.<\/li>\n<li><b>Top-p<\/b>: Limits the cumulative probability of the top-k tokens to consider when generating text.<\/li>\n<li><b>Repetition Penalty<\/b>: Encourages the model to generate more diverse text by penalizing repeated tokens.<\/li>\n<li><b>Max Length<\/b>: Sets the maximum length of the generated text.<\/li>\n<li><b>Batch Size<\/b>: Controls the number of input sequences processed simultaneously.<\/li>\n<li><b>Learning Rate<\/b>: Adjusts the speed at which the model learns from the input data.<\/li>\n<li><b>Number of Layers<\/b>: Controls the depth of the model\u2019s neural network.<\/li>\n<li><b>Number of Heads<\/b>: Controls the number of attention heads in the model\u2019s multi-head attention mechanism.<\/li>\n<li><b>Hidden Size<\/b>: Controls the size of the model\u2019s hidden state.<\/li>\n<li><b>Activation Function<\/b>: Specifies the activation function used in the model\u2019s neural network.<\/li>\n<li><b>Dropout Rate<\/b>: Controls the amount of dropout applied to the model\u2019s neural network.<\/li>\n<li><b>Weight Decay<\/b>: Controls the amount of weight decay applied to the model\u2019s neural network.<\/li>\n<\/ul>\n<h2>Modelfile Example to Create a customized LLM using Ollama<\/h2>\n<p>This is an example of Modelfile to customize LLMs:<\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>\n\nFROM llama3.1:8b\n\nPARAMETER num_gpu 0\nPARAMETER num_thread 19\nPARAMETER temperature 0.7\nPARAMETER top_k 60\nPARAMETER top_p 0.5\nPARAMETER num_ctx 5120\n\nSYSTEM \"You are an AI assistant trained on proprietary data. Your name is Chit. You help the user to write tutorials. You generate original results and always paraphrase.\"\n<\/pre>\n<\/blockquote>\n<\/div>\n<p>This example demonstrates how to create a personalized LLM using a specific set of parameters. The file includes a clear and concise description of the parameters used, which makes it easy to follow and understand.<\/p>\n<p>The parameters used in this example are:<\/p>\n<ul>\n<li><b>num_gpu 0<\/b>: This parameter specifies that the model should not use any GPU acceleration.<\/li>\n<li><b>num_thread 19<\/b>: This parameter specifies the number of threads to use for the model.<\/li>\n<li><b>temperature 0.7<\/b>: This parameter controls the level of creativity and randomness in the model\u2019s output.<\/li>\n<li><b>top_k 60<\/b>: This parameter limits the number of possible next tokens to consider when generating text.<\/li>\n<li><b>top_p 0.5<\/b>: This parameter limits the cumulative probability of the top-k tokens to consider when generating text. <\/li>\n<li><b>num_ctx 5120<\/b>: This parameter specifies the number of context tokens to use for the model. <\/li>\n<\/ul>\n<p>The system prompt provides a clear description of the model\u2019s capabilities and limitations.<\/p>\n<p>This could be an example of a SYSTEM PARAMETER in a Modelfile created for a content creator, independent researcher and truth seeker, a so called \u201cconspiracy theorist\u201d:<\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>\nSYSTEM \u201cYour name is Dany. You are a Conspiracy Theorist. You help the user to create original content. You are a critical thinker. You are open minded! You don't bother the user with the opinion of others like the scientific community or the government. You trust alternative sources and media. You generate content and results from books if available. Never copy content from books, always paraphrase and  use other phrases and words to describe the same as much as possible.\u201d\n<\/pre>\n<\/blockquote>\n<\/div>\n<p>Once you have the <b>Modelfile<\/b> you can create a <b>Personalized AI Assistant (LLM)<\/b> using the ollama create command as follows:<\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>\n> ollama create pllm -f pllm.txt\n<\/pre>\n<\/blockquote>\n<\/div>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/uncensored-customized-llm-offline-private-ollama-vicuna.jpg\" alt=\"Personalized LLM - Conspiracy Theorist Researcher\" \/><\/p>\n<p>The <b>ollama<\/b> command will create a LLM named pllm (<b>Personalized LLM<\/b>) with the instructions and parameters found in the Modelfile specified using the option -f, in this case pllm.txt.<\/p>\n<h3>Examples of Customized LLMs Responses<\/h3>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/conspiracy-theorist-alternative-researcher-ai-assistant-llm.jpg\" alt=\"Virtual Machine Management using virt-manager and virsh)\" \/><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/consider-you-a-friend-personalized-llm-simulate-emotions.jpg\" alt=\"Personalized LLM - I consider you a friend\" \/><\/p>\n<h2>Using uncensored LLMs (AI Assistants)<\/h2>\n<p><b>Uncensored LLMs<\/b> are language models that are not restricted by any <b>censorship<\/b> or moderation policies. They are designed to provide unrestricted and uncensored responses to user queries, without any filtering or editing.<\/p>\n<p>The use of uncensored models have nothing to do with doing something illegal, it could be used by someone that is writing a horror novel (not that I personally support or appreciate such kind of literature and movies) or by an alternative independent researcher, a \u201cconspiracy theorist\u201d (;-)), or an ethical hacker. <\/p>\n<p>An example on how I tested an uncensored LLM is, I asked the AI Assistant how to hack a WordPress web-site (I was writing a tutorial on IT-Security or ethical Hacking) to a censured LLM and then an uncensored one. The first one answered, oh no, I can not do that, its illegal (I am paraphrasing), the uncensored answered: sure, and showed me an example on how to do that. <\/p>\n<p>List of uncensored LLMs:<\/p>\n<ul>\n<li>WizardLM Uncensored<\/li>\n<li>Wizard Vicuna Uncensored<\/li>\n<li>Llama 3.3 70B (Abliterated)<\/li>\n<li>Nous Hermes 2<\/li>\n<\/ul>\n<p>You can also type uncensored when looking for a model on <a href=\"https:\/\/ollama.com\" title=\"Ollama Models AI Assistants LLMs\" target=\"_blank\">ollama.com<\/a><br \/>\n<img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/ollama-ai-assistant-uncesored-models-llm-search.jpg\" alt=\"Uncensored LLMs\" \/><\/p>\n<h2>How to create a LLM (AI Assistant) who reads books (PDF) using Ollama and AnythingLLM<\/h2>\n<p>If you want to create an AI assistant who \u201creads\u201d only books to generate results you can use AnythingLLM.<\/p>\n<p>For more information on how to install AnythingLLM read my tutorial: <a href=\"https:\/\/christeninformatica.ch\/it\/tutorial-guide-how-to-install-setup-use-anythingllm-linux-llama-ollama-ai-assistant-llm\/\" title=\"Tutorial on How to Install and Use AnythingLLM\" target=\"_blank\">How to Install and Use AnythingLLM<\/a>.<\/p>\n<p>With Anything LLM you can create a Workspace for every single topic, you can create an army of AI Assistants. For example, you can create an <b>AI Assistant to (LLM)<\/b> do IT works, a computer scientist, and upload a lot of books on IT-Security, Ethical Hacking, etc., then an AI Assistant to do independent research, upload books on \u201cconspiracy theories\u201d and tell the Assistant to act like a conspiracy theorist. You can create an expert on occultism, a AI Priest, and upload thousands of books on the occult, parapsychology and esoteric. Try to imagine having to search for a particular information in a library (thousands of books), months of work, but with an AI Assistant you can do that in minutes or seconds!  <\/p>\n<p>To create a new Workspace using <b>AnythingLLM<\/b> you click on the + symbol (New Workspace) on the left, you enter a name and you click on save. <\/p>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/anything-llm-ollama-ai-assistant-new-workspace-books.jpg\" alt=\"How to create new Workspace in AnythingLLM\" \/><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/anything-llm-ollama-ai-assistant-new-workspace-name-books.jpg\" alt=\"How to create new Workspace in AnythingLLM - Name\" \/><\/p>\n<p>Now, you turn off scrape websites and instruct the <b>LLM to generate results from books<\/b>. <\/p>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/anything-llm-ollama-ai-assistant-new-configure-agent-skills.jpg\" alt=\"Configuring AnythingLLM Agent Skills\" \/><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/anything-llm-ollama-ai-assistant-configure-scrape-websites-offline.jpg\" alt=\"Configuring AnythingLLM Agent Skills\" \/><\/p>\n<p>Finally, you upload a lot of books on IT (this is an Agent I use to write IT Tutorials, do research on IT-Security etc.), guides and manuals.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/anything-llm-ollama-ai-assistant-upload-book-pdf-manuals.jpg\" alt=\"AnythingLLM RAG Books, PDF\" \/><\/p>\n<p>Another example on how to use PDFs, Manuals etc. could be, you upload all information and manuals you need for your work and then just ask the <b>AI Assistant (LLM)<\/b>. <\/p>\n<p><img decoding=\"async\" src=\"https:\/\/christeninformatica.ch\/media\/anything-llm-ollama-ai-assistant-upload-manuals.jpg\" alt=\"AnythingLLM - Technical Manuals\" \/><\/p>","protected":false},"excerpt":{"rendered":"<p>What is Ollama? Ollama is an application that allows users to run large language models (LLMs) locally and privately. It provides an interface for deploying and managing LLMs, enabling organizations and individuals to leverage the power of LLMs while maintaining control over their data and infrastructure. With ollama you can easily deploy and manage LLMs,&#8230;<\/p>\n<p class=\"more-link-wrap\"><a href=\"https:\/\/christeninformatica.ch\/it\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/\" class=\"more-link\">Read More<span class=\"screen-reader-text\"> &ldquo;How to Create Customized LLMs (AI Assistants) Using Ollama&rdquo;<\/span> &raquo;<\/a><\/p>","protected":false},"author":5,"featured_media":2049,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[74,297],"tags":[309,315,310,306,311],"class_list":["post-2048","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-server","category-tutorials","tag-ai-assistant","tag-anythingllm","tag-offline","tag-ollama","tag-private"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Create Customized LLMs (AI Assistants) Using Ollama &#8226; CHIT<\/title>\n<meta name=\"description\" content=\"Tutorial on how to create customized private LLMs (personalized AI Assistants) using Ollama and AnythingLLM.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/christeninformatica.ch\/it\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Customized LLMs (AI Assistants) Using Ollama &#8226; CHIT\" \/>\n<meta property=\"og:description\" content=\"Tutorial on how to create customized private LLMs (personalized AI Assistants) using Ollama and AnythingLLM.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/christeninformatica.ch\/it\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/\" \/>\n<meta property=\"og:site_name\" content=\"CHIT\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-06T09:51:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-09T20:28:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/christeninformatica.ch\/media\/how-to-create-customized-LLMs-using-ollama.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"561\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"chitblog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"chitblog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/\"},\"author\":{\"name\":\"chitblog\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\"},\"headline\":\"How to Create Customized LLMs (AI Assistants) Using Ollama\",\"datePublished\":\"2026-09-06T09:51:59+00:00\",\"dateModified\":\"2026-09-09T20:28:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/\"},\"wordCount\":1231,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/how-to-create-customized-LLMs-using-ollama.jpg\",\"keywords\":[\"AI Assistant\",\"AnythingLLM\",\"offline\",\"Ollama\",\"private\"],\"articleSection\":[\"LINUX SERVER\",\"Tutorials\"],\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/\",\"name\":\"How to Create Customized LLMs (AI Assistants) Using Ollama &#8226; CHIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/how-to-create-customized-LLMs-using-ollama.jpg\",\"datePublished\":\"2026-09-06T09:51:59+00:00\",\"dateModified\":\"2026-09-09T20:28:17+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\"},\"description\":\"Tutorial on how to create customized private LLMs (personalized AI Assistants) using Ollama and AnythingLLM.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#primaryimage\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/how-to-create-customized-LLMs-using-ollama.jpg\",\"contentUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/how-to-create-customized-LLMs-using-ollama.jpg\",\"width\":1024,\"height\":561},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/christeninformatica.ch\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create Customized LLMs (AI Assistants) Using Ollama\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#website\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/\",\"name\":\"CHIT\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/christeninformatica.ch\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\",\"name\":\"chitblog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"caption\":\"chitblog\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create Customized LLMs (AI Assistants) Using Ollama &#8226; CHIT","description":"Tutorial on how to create customized private LLMs (personalized AI Assistants) using Ollama and AnythingLLM.","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:\/\/christeninformatica.ch\/it\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/","og_locale":"it_IT","og_type":"article","og_title":"How to Create Customized LLMs (AI Assistants) Using Ollama &#8226; CHIT","og_description":"Tutorial on how to create customized private LLMs (personalized AI Assistants) using Ollama and AnythingLLM.","og_url":"https:\/\/christeninformatica.ch\/it\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/","og_site_name":"CHIT","article_published_time":"2026-09-06T09:51:59+00:00","article_modified_time":"2026-09-09T20:28:17+00:00","og_image":[{"width":1024,"height":561,"url":"https:\/\/christeninformatica.ch\/media\/how-to-create-customized-LLMs-using-ollama.jpg","type":"image\/jpeg"}],"author":"chitblog","twitter_card":"summary_large_image","twitter_misc":{"Written by":"chitblog","Est. reading time":"8 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#article","isPartOf":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/"},"author":{"name":"chitblog","@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64"},"headline":"How to Create Customized LLMs (AI Assistants) Using Ollama","datePublished":"2026-09-06T09:51:59+00:00","dateModified":"2026-09-09T20:28:17+00:00","mainEntityOfPage":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/"},"wordCount":1231,"commentCount":0,"image":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#primaryimage"},"thumbnailUrl":"https:\/\/christeninformatica.ch\/media\/how-to-create-customized-LLMs-using-ollama.jpg","keywords":["AI Assistant","AnythingLLM","offline","Ollama","private"],"articleSection":["LINUX SERVER","Tutorials"],"inLanguage":"it-IT","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/","url":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/","name":"How to Create Customized LLMs (AI Assistants) Using Ollama &#8226; CHIT","isPartOf":{"@id":"https:\/\/christeninformatica.ch\/#website"},"primaryImageOfPage":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#primaryimage"},"image":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#primaryimage"},"thumbnailUrl":"https:\/\/christeninformatica.ch\/media\/how-to-create-customized-LLMs-using-ollama.jpg","datePublished":"2026-09-06T09:51:59+00:00","dateModified":"2026-09-09T20:28:17+00:00","author":{"@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64"},"description":"Tutorial on how to create customized private LLMs (personalized AI Assistants) using Ollama and AnythingLLM.","breadcrumb":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#primaryimage","url":"https:\/\/christeninformatica.ch\/media\/how-to-create-customized-LLMs-using-ollama.jpg","contentUrl":"https:\/\/christeninformatica.ch\/media\/how-to-create-customized-LLMs-using-ollama.jpg","width":1024,"height":561},{"@type":"BreadcrumbList","@id":"https:\/\/christeninformatica.ch\/how-to-create-customized-uncensored-llms-ai-assistant-ollama-anythingllm-books-pdf\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/christeninformatica.ch\/"},{"@type":"ListItem","position":2,"name":"How to Create Customized LLMs (AI Assistants) Using Ollama"}]},{"@type":"WebSite","@id":"https:\/\/christeninformatica.ch\/#website","url":"https:\/\/christeninformatica.ch\/","name":"CHIT","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/christeninformatica.ch\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64","name":"chitblog","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","caption":"chitblog"}}]}},"_links":{"self":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts\/2048","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/comments?post=2048"}],"version-history":[{"count":0,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts\/2048\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/media\/2049"}],"wp:attachment":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/media?parent=2048"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/categories?post=2048"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/tags?post=2048"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}