{"id":171120,"date":"2026-05-23T13:09:03","date_gmt":"2026-05-23T11:09:03","guid":{"rendered":"https:\/\/www.startupbusiness.it\/inside-the-machine-what-llms-really-are\/171120\/"},"modified":"2026-05-24T09:28:46","modified_gmt":"2026-05-24T07:28:46","slug":"inside-the-machine-what-llms-really-are","status":"publish","type":"post","link":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/","title":{"rendered":"Inside the machine: what LLMs really are"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><em>This article marks the start of a series of in-depth pieces by Giuseppe Ciuni on the functional and technical aspects \u2013 explained in simple terms \u2013 of how artificial intelligence works. The author is an expert in digital technologies, a software developer and systems analyst; his organisation is based in southern Sicily and works with clients from all over the world, and here on the pages of Startupbusiness he shares his knowledge of the systems we commonly refer to as artificial intelligence.  <\/em><\/p>\n\n<h2 class=\"wp-block-heading\"><strong>What exactly are LLMs? <\/strong><\/h2>\n\n<p class=\"wp-block-paragraph\">Over the past eighteen months, the adoption of AI within the company has moved from a trial phase to full-scale operational use. <\/p>\n\n<p class=\"wp-block-paragraph\">Those working in the sector have gone through some very familiar stages: first, amazement: \u201cWhat on earth is this? It\u2019s like magic!\u201d, then the practical question: \u201cBut is it possible to harness all this power and integrate it into my business or my product?\u201d. <\/p>\n\n<p class=\"wp-block-paragraph\">Since then, start-ups and businesses in general have begun to integrate AI \u2013 specifically large language models (LLMs) \u2013 into their products and processes.<\/p>\n\n<p class=\"wp-block-paragraph\">Some integrations deliver tangible, measurable results; others do not. There is often just one deciding factor: a clear understanding of what an LLM actually does. <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Neither a database nor a search engine<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">An LLM does not retrieve information from a repository, index documents like Elasticsearch, or query a database like PostgreSQL. What it does is rather more unusual, and understanding this completely changes the way we design AI systems. Let\u2019s take a closer look.   <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>An LLM is a statistical text generator<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">During pre-training, the model is exposed to trillions of tokens extracted from the web (web pages, books, code, forums, etc.) and trained to do just one thing: predict which token comes next given a context. Nothing else. <\/p>\n\n<p class=\"wp-block-paragraph\">Andrej Karpathy, former head of AI at Tesla and one of the most influential researchers in the field, describes the resulting base model as a system that does not answer questions but completes text sequences in a way that is statistically consistent with what it observed during training.<\/p>\n\n<p class=\"wp-block-paragraph\">This distinction has direct implications for what one should expect from an LLM model, and in particular from an LLM applied to a business context.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Microgpt, a GPT in 200 lines<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">In February 2026, Karpathy released Microgpt, a 200-line Python script with zero dependencies that implements the entire training and inference cycle of a GPT.<\/p>\n\n<p class=\"wp-block-paragraph\">The project includes datasets, a tokeniser, a custom-built autograd engine, a simplified GPT-2 architecture, an Adam optimiser and a training loop.<\/p>\n\n<p class=\"wp-block-paragraph\">The model is trained on 32,000 proper names and learns to generate new ones that are statistically plausible.<\/p>\n\n<p class=\"wp-block-paragraph\">Everything you need to understand an LLM can be read in an afternoon and consists of the following parts:<\/p>\n\n<p class=\"wp-block-paragraph\">Dataset + tokenisation + Transformer neural network + backpropagation + optimisation.<\/p>\n\n<p class=\"wp-block-paragraph\">It should be noted that the difference between Microgpt and GPT-4 is of the order of magnitude in terms of parameters, data and computational operations, but the underlying algorithm is identical.<\/p>\n\n<p class=\"wp-block-paragraph\">As you can see, an LLM isn\u2019t magic: it\u2019s applied mathematics on an industrial scale. <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>LLM: the tokeniser<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">\u201cRaw\u201d text cannot be fed directly into a neural network, as neural networks only process numbers; it needs to be converted. This conversion is carried out by the tokeniser. <\/p>\n\n<p class=\"wp-block-paragraph\">The most obvious approach to conversion would be to process it character by character \u2013 \u201chello\u201d (which becomes [c, i, a, o]) \u2013 or word by word. <\/p>\n\n<p class=\"wp-block-paragraph\">However, both options have their drawbacks: <\/p>\n\n<ul class=\"wp-block-list\">\n<li>the characters produce sequences that are too long and lose their structure<\/li>\n\n\n\n<li>Words create vast vocabularies, but they don\u2019t handle rare words or unfamiliar technical terms very well.<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">We need to find a better solution that doesn\u2019t compromise the structure and that compresses words intelligently, whilst keeping the size of the dictionaries under control. The byte-pair encoding algorithm comes to our aid.  <\/p>\n\n<p class=\"wp-block-paragraph\">Here is an example of how the BPE algorithm works:<\/p>\n\n<ul class=\"wp-block-list\">\n<li>starts with the individual characters in a sentence;<\/li>\n\n\n\n<li>It iteratively identifies the pairs of symbols that appear most frequently in the text and merges them into a single token, for example:<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">\u201cth\u201d often appears in English \u2192 it becomes a token.<\/p>\n\n<p class=\"wp-block-paragraph\">\u201cthe\u201d appears even more frequently \u2192 it becomes a token.<\/p>\n\n<ul class=\"wp-block-list\">\n<li>The process is repeated until the desired vocabulary size is reached.<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">Very common words (such as \u201cthe\u201d, \u201chome\u201d and \u201ccat\u201d) are stored as unique tokens. Rare words, on the other hand, are split up. <\/p>\n\n<p class=\"wp-block-paragraph\">This token-based representation has practical implications: the model does not \u2018see\u2019 words in the same way we do; certain seemingly trivial errors (such as miscounting the letters in a word) stem directly from this level of representation, not from the model\u2019s capabilities.<\/p>\n\n<p class=\"wp-block-paragraph\">Note: The most well-known LLMs (ChatGPT, Claude, Gemini, etc.) are trained on English-language datasets; for the same meaning and text length, Italian uses significantly more tokens than English (between 30% and 50% more).<\/p>\n\n<p class=\"wp-block-paragraph\">It is therefore best to write the prompts in English.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>A map of an LLM\u2019s actual capabilities (what it does well)<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">LLMs are capable of generating text, processing data and performing many other tasks. However, we need to understand how to assign a quality metric (a form of ROI) to the results obtained. <\/p>\n\n<p class=\"wp-block-paragraph\">Here are three examples where LLMs perform well in a business context:<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Converting unstructured text into a structured format<\/strong><strong> <\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Given a document, a contract, an email, etc., you want to extract structured data (such as JSON or a table). The model works well because it doesn\u2019t need to \u2018know\u2019 anything beyond what is already in the text you provide: it reads what\u2019s there, recognises patterns, and organises them into the format you\u2019ve requested. This is by far the most reliable use case.  <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Draft generation<\/strong><strong> <\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">The model generates a first draft of a document (such as a technical specification or a business email) based on the structured input provided. <\/p>\n\n<p class=\"wp-block-paragraph\">The result is not the final output but a draft that a human will need to review. The value of generating drafts lies in reducing the time required for human review from hours to minutes. <\/p>\n\n<p class=\"wp-block-paragraph\">The essential requirement is that the process explicitly provides for human review, not as an option but as a mandatory step.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>RAG<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">When querying an LLM, for example using proprietary company data, it is highly likely that you will receive an incorrect or \u2018hallucinated\u2019 response. The issue of hallucinated responses is not due to the quality of the model being used, but rather to the fact that the requested data is not present within the model (pre-training phase) <\/p>\n\n<p class=\"wp-block-paragraph\">RAG tackles this problem at source: rather than asking the model to remember something \u2013 which it cannot possibly know \u2013 it is provided with the information at the very moment it is needed.<\/p>\n\n<p class=\"wp-block-paragraph\">The mechanism is simple: the system searches the company\u2019s knowledge base for documents relevant to the query, places them within the context of the conversation, and responds based solely on that material. The practical result is that hallucinations regarding proprietary domains are drastically reduced. <\/p>\n\n<h2 class=\"wp-block-heading\"><strong>Potential mistakes that could blow the budget<\/strong><\/h2>\n\n<p class=\"wp-block-paragraph\"><strong>The model used as an oracle<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">If you ask a model for information about internal company data (for example: up-to-date prices, proprietary technical specifications, stock availability), the model does not have access to this information. <\/p>\n\n<p class=\"wp-block-paragraph\">During pre-training, it read billions of documents from the web: everything it learnt was compressed into its parameters, which remain fixed after training. It doesn\u2019t know what happened yesterday, it isn\u2019t familiar with the company\u2019s data, and it doesn\u2019t have access to your customer database.  <\/p>\n\n<p class=\"wp-block-paragraph\">The response it produces will be linguistically fluent and tonally confident (because it has learnt to use words, see Kharpathy\u2019s words), but the content will be generated statistically, not retrieved from a real source.<\/p>\n\n<p class=\"wp-block-paragraph\">This is how hallucinations work: it is not a bug, but the expected behaviour of a system that produces the statistically most plausible outcome even in the absence of actual information.<\/p>\n\n<p class=\"wp-block-paragraph\">The solution is not to seek an absolutely more accurate model, but to design a sound architecture, as mentioned earlier. <\/p>\n\n<p class=\"wp-block-paragraph\">Two established approaches that are commonly used are as follows:<\/p>\n\n<ul class=\"wp-block-list\">\n<li>with RAG: rather than asking the model to recall information, the model is provided with the information at the moment it needs it. The system retrieves the relevant documents from a knowledge base, places them within the context of the conversation, and the model responds based solely on that material; <\/li>\n\n\n\n<li>with the &#8216;use&#8217; tool: the model is equipped with tools it can call upon during generation: an API call to the back-end system, a database query, or a search. When a query about stock availability arrives, the model doesn\u2019t \u2018think\u2019 about it; it calls the tool, receives the actual response and incorporates it. In both cases, the model does what it does best: reasoning about the text provided, structuring a response and extracting relevant information without being forced to invent what it doesn\u2019t know.  <\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\"><strong>Prompt without architecture<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">A prompt that works in a manual isn\u2019t an integration; it\u2019s just an experiment. <\/p>\n\n<p class=\"wp-block-paragraph\">Deploying that prompt into production requires the same approach as with any software system: input validation, parsing and output validation, error handling, logging, and testing. Without a structured pipeline, the results remain potentially inconsistent and difficult to measure. <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Choosing the wrong model for the task<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Not all tasks require the most powerful and expensive models. For classification and structured extraction from short text, for example, there is no need to use the best LLM available; instead, locally run models can produce results comparable to the current top models at a fraction of the cost.  <\/p>\n\n<p class=\"wp-block-paragraph\">This approach has three advantages:<\/p>\n\n<ul class=\"wp-block-list\">\n<li>lower costs<\/li>\n\n\n\n<li>privacy<\/li>\n\n\n\n<li>compliance GDPR<\/li>\n<\/ul>\n\n<h2 class=\"wp-block-heading\"><strong>Three practical and replicable implementations using an LLM<\/strong><\/h2>\n\n<p class=\"wp-block-paragraph\"><strong>Use case 1: automated helpdesk based on a proprietary knowledge base<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">What you&#8217;ll need:<\/p>\n\n<ul class=\"wp-block-list\">\n<li>a small, low-cost cloud model, e.g. Claude Haiku, GPT-40 mini<\/li>\n\n\n\n<li>a RAG layer built on a vector database (Qdrant or pgvector on an existing Postgres instance), integrated into the existing support channel.<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">The measurable outcome is a reduction in the number of enquiries received by human operators regarding questions that have already been answered in the documentation. The ROI is calculated in man-hours saved per ticket. Realistic time to production: three to four weeks with a team that is already familiar with the infrastructure.  <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Use case 2: contract analysis pipeline<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">An in-house legal department or a law firm receives contracts to review:<\/p>\n\n<p class=\"wp-block-paragraph\">What you&#8217;ll need:<\/p>\n\n<ul class=\"wp-block-list\">\n<li>extract specific clauses (penalty clauses, automatic renewal, limitations of liability, jurisdiction), structure them into a validated JSON,<\/li>\n\n\n\n<li>produce a summary report.<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">This is a task where current models perform reliably provided the prompt is well-crafted and the output is validated against a schema. The cost of inference per document is in the region of a few pence. The time saved per document is equivalent to around half an hour of skilled labour.  <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Use case 3: automatic classification and routing of incoming documents.<\/strong> <\/p>\n\n<p class=\"wp-block-paragraph\">A procurement department or any business function that receives large volumes of diverse documents (e.g. invoices, orders, etc.) can set up a workflow that classifies each incoming document, extracts the relevant fields and routes it to the correct process without human intervention. <\/p>\n\n<p class=\"wp-block-paragraph\">What you&#8217;ll need: <\/p>\n\n<ul class=\"wp-block-list\">\n<li>a cost-effective LLM model for classification and extraction (e.g. GPT-40 mini, Claude Haiku)<\/li>\n\n\n\n<li>an output validation layer to be compared with a JSON schema<\/li>\n\n\n\n<li>integration with the existing business management or document management system<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">The cost per document is in the region of a few pence. <\/p>\n\n<h2 class=\"wp-block-heading\"><strong>Before making any investment, ask yourself three questions<\/strong><\/h2>\n\n<ul class=\"wp-block-list\">\n<li>What is the specific task you wish to tackle, with precisely defined inputs and outputs?<\/li>\n<\/ul>\n\n<ul class=\"wp-block-list\">\n<li>Can the output be verified automatically, or does it require human review?<\/li>\n<\/ul>\n\n<ul class=\"wp-block-list\">\n<li>Does the value generated justify the cost of the model, as well as the costs of integration and maintenance over time?<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">Anyone who has clear answers to these three questions has already identified a potentially sound use case<\/p>\n\n<p class=\"wp-block-paragraph\"><em>Nel prossimo numero di &#8216;Inside the machine&#8217; si illustrer\u00e0 l\u2019autograd, ossia il meccanismo usato nella rete neurale per imparare dagli errori, il concetto di gradiente, il modello base ed il modello instruct. <\/em>(foto di <a href=\"https:\/\/unsplash.com\/it\/@omilaev?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText\">Igor Omilaev <\/a>su <a href=\"https:\/\/unsplash.com\/it\/foto\/uninsegna-al-neon-al-neon-che-si-trova-sul-lato-di-un-muro-9XtKSci9crg?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText\">Unsplash<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The first in a series of articles that explores the inner workings of artificial intelligence to facilitate its adoption<\/p>\n","protected":false},"author":125,"featured_media":171119,"comment_status":"closed","ping_status":"open","sticky":true,"template":"","format":"standard","meta":{"_acf_changed":false,"_substack_draft_id":"","_substack_draft_url":"","_substack_last_pushed":"","_substack_premium":"","footnotes":""},"categories":[1134],"tags":[1324,1480,1331],"companies":[],"journalist":[3458],"class_list":["post-171120","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn","tag-artificial-intelligence-en","tag-education-en","tag-innovation-en","journalist-giuseppe-ciuni"],"featured_sizes_urls":{"thumbnail":{"src":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","width":150,"height":84,"crop":false,"srcset":false,"alt":"how artificial intelligence works"},"large":{"src":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","width":1024,"height":576,"crop":false,"srcset":false,"alt":"how artificial intelligence works"},"2048x2048":{"src":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","width":1280,"height":720,"crop":false,"srcset":false,"alt":"how artificial intelligence works"}},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Inside the machine: what LLMs really are<\/title>\n<meta name=\"description\" content=\"The first in a series of articles that explores the inner workings of artificial intelligence to facilitate its adoption\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inside the machine: what LLMs really are\" \/>\n<meta property=\"og:description\" content=\"The first in a series of articles that explores the inner workings of artificial intelligence to facilitate its adoption\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/\" \/>\n<meta property=\"og:site_name\" content=\"Startupbusiness.it\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-23T11:09:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-24T07:28:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Emil Abirascid\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@emilabirascid\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Emil Abirascid\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/\"},\"author\":{\"name\":\"Emil Abirascid\",\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/#\\\/schema\\\/person\\\/4e2760db2cb7ca47d635ea3d8d8486dd\"},\"headline\":\"Inside the machine: what LLMs really are\",\"datePublished\":\"2026-05-23T11:09:03+00:00\",\"dateModified\":\"2026-05-24T07:28:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/\"},\"wordCount\":2022,\"image\":{\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.startupbusiness.it\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/igor-omilaev-9XtKSci9crg-unsplash.jpg\",\"keywords\":[\"artificial intelligence\",\"education\",\"innovation\"],\"articleSection\":[\"Learn\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/\",\"url\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/\",\"name\":\"Inside the machine: what LLMs really are\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.startupbusiness.it\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/igor-omilaev-9XtKSci9crg-unsplash.jpg\",\"datePublished\":\"2026-05-23T11:09:03+00:00\",\"dateModified\":\"2026-05-24T07:28:46+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/#\\\/schema\\\/person\\\/4e2760db2cb7ca47d635ea3d8d8486dd\"},\"description\":\"The first in a series of articles that explores the inner workings of artificial intelligence to facilitate its adoption\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/inside-the-machine-what-llms-really-are\\\/171120\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.startupbusiness.it\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/igor-omilaev-9XtKSci9crg-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/www.startupbusiness.it\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/igor-omilaev-9XtKSci9crg-unsplash.jpg\",\"width\":1280,\"height\":720,\"caption\":\"how artificial intelligence works\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/\",\"name\":\"Startupbusiness.it\",\"description\":\"May the Force be with you!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/#\\\/schema\\\/person\\\/4e2760db2cb7ca47d635ea3d8d8486dd\",\"name\":\"Emil Abirascid\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ac925fb049ca749d7e16a36a75fbc9bf342bb19b7c22dae55be274ab4557890a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ac925fb049ca749d7e16a36a75fbc9bf342bb19b7c22dae55be274ab4557890a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ac925fb049ca749d7e16a36a75fbc9bf342bb19b7c22dae55be274ab4557890a?s=96&d=mm&r=g\",\"caption\":\"Emil Abirascid\"},\"description\":\"Emil Abirascid (\u30a8\u30df\u30fc\u30eb\u30fb\u30a2\u30d3\u30e9\u30b7\u30c3\u30c9), giornalista, fondatore e direttore di Startupbusiness, il primo magazine sull\u2019ecosistema startup e innovazione italiano. Co-fondatore di Designtech, l\u2019hub di innovazione che avvicina il mondo del design con quello della tecnologia. Advisor di Austrian Business Agency, Emil Banca, Fondazione Symbola, Fondazione Quadrans. Partecipa regolarmente a incontri, convegni, conferenze dedicate all\u2019ecosistema dell\u2019innovazione. E\u2019 stato co-organizzatore degli Italian Innovation Day and Series che si sono svolti dal dal 2016 al 2020 nelle citt\u00e0 di Tokyo in Giappone, Melbourne, Adelaide, Perth, Canberra in Australia e Singapore e co-organizzatore dell\u2019Italy India Innovation Day di AIICP 2021 e 2022. Ha curato il volume \u2018L\u2019innovazione che non ti aspetti. Contesti e visioni per l\u2019impresa\u2019 , l\u2019edizione italiana di \u2018La startup digitale, guida pratica step by step\u2019 e ha scritto la prefazione all\u2019edizione italiana de \u2018La quarta era\u2019 di Byron Reese, ed \u00e8 co-autore di \u2018Cosa e Dove: strategie digitali di ricerca del lavoro\u2019, tutti editi da FrancoAngeli. In passato \u00e8 stato curatore di StartupDigest Italy, coordinatore scientifico del Forum per la Ricerca della Provincia Autonoma di Trento, board member di TechChill Milano advisor di di ScaleIT , ha collaborato con Il Sole 24 Ore \u00e8 stato direttore di Innov\u2019azione, bimestrale edito da Apsti, ha collaborato con Corriere Innovazione ed \u00e8 stato presidente del comitato di selezione del Premio Marzotto e advisor di Cetif-Universit\u00e0 Cattolica Milano.\",\"sameAs\":[\"https:\\\/\\\/www.abirascid.com\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/emilabirascid\",\"https:\\\/\\\/x.com\\\/emilabirascid\"],\"url\":\"https:\\\/\\\/www.startupbusiness.it\\\/en\\\/author\\\/emil-abirascid\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inside the machine: what LLMs really are","description":"The first in a series of articles that explores the inner workings of artificial intelligence to facilitate its adoption","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:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/","og_locale":"en_US","og_type":"article","og_title":"Inside the machine: what LLMs really are","og_description":"The first in a series of articles that explores the inner workings of artificial intelligence to facilitate its adoption","og_url":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/","og_site_name":"Startupbusiness.it","article_published_time":"2026-05-23T11:09:03+00:00","article_modified_time":"2026-05-24T07:28:46+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","type":"image\/jpeg"}],"author":"Emil Abirascid","twitter_card":"summary_large_image","twitter_creator":"@emilabirascid","twitter_misc":{"Written by":"Emil Abirascid","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/#article","isPartOf":{"@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/"},"author":{"name":"Emil Abirascid","@id":"https:\/\/www.startupbusiness.it\/en\/#\/schema\/person\/4e2760db2cb7ca47d635ea3d8d8486dd"},"headline":"Inside the machine: what LLMs really are","datePublished":"2026-05-23T11:09:03+00:00","dateModified":"2026-05-24T07:28:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/"},"wordCount":2022,"image":{"@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/#primaryimage"},"thumbnailUrl":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","keywords":["artificial intelligence","education","innovation"],"articleSection":["Learn"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/","url":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/","name":"Inside the machine: what LLMs really are","isPartOf":{"@id":"https:\/\/www.startupbusiness.it\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/#primaryimage"},"image":{"@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/#primaryimage"},"thumbnailUrl":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","datePublished":"2026-05-23T11:09:03+00:00","dateModified":"2026-05-24T07:28:46+00:00","author":{"@id":"https:\/\/www.startupbusiness.it\/en\/#\/schema\/person\/4e2760db2cb7ca47d635ea3d8d8486dd"},"description":"The first in a series of articles that explores the inner workings of artificial intelligence to facilitate its adoption","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.startupbusiness.it\/en\/inside-the-machine-what-llms-really-are\/171120\/#primaryimage","url":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","contentUrl":"https:\/\/www.startupbusiness.it\/wp-content\/uploads\/2026\/05\/igor-omilaev-9XtKSci9crg-unsplash.jpg","width":1280,"height":720,"caption":"how artificial intelligence works"},{"@type":"WebSite","@id":"https:\/\/www.startupbusiness.it\/en\/#website","url":"https:\/\/www.startupbusiness.it\/en\/","name":"Startupbusiness.it","description":"May the Force be with you!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.startupbusiness.it\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.startupbusiness.it\/en\/#\/schema\/person\/4e2760db2cb7ca47d635ea3d8d8486dd","name":"Emil Abirascid","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ac925fb049ca749d7e16a36a75fbc9bf342bb19b7c22dae55be274ab4557890a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ac925fb049ca749d7e16a36a75fbc9bf342bb19b7c22dae55be274ab4557890a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ac925fb049ca749d7e16a36a75fbc9bf342bb19b7c22dae55be274ab4557890a?s=96&d=mm&r=g","caption":"Emil Abirascid"},"description":"Emil Abirascid (\u30a8\u30df\u30fc\u30eb\u30fb\u30a2\u30d3\u30e9\u30b7\u30c3\u30c9), giornalista, fondatore e direttore di Startupbusiness, il primo magazine sull\u2019ecosistema startup e innovazione italiano. Co-fondatore di Designtech, l\u2019hub di innovazione che avvicina il mondo del design con quello della tecnologia. Advisor di Austrian Business Agency, Emil Banca, Fondazione Symbola, Fondazione Quadrans. Partecipa regolarmente a incontri, convegni, conferenze dedicate all\u2019ecosistema dell\u2019innovazione. E\u2019 stato co-organizzatore degli Italian Innovation Day and Series che si sono svolti dal dal 2016 al 2020 nelle citt\u00e0 di Tokyo in Giappone, Melbourne, Adelaide, Perth, Canberra in Australia e Singapore e co-organizzatore dell\u2019Italy India Innovation Day di AIICP 2021 e 2022. Ha curato il volume \u2018L\u2019innovazione che non ti aspetti. Contesti e visioni per l\u2019impresa\u2019 , l\u2019edizione italiana di \u2018La startup digitale, guida pratica step by step\u2019 e ha scritto la prefazione all\u2019edizione italiana de \u2018La quarta era\u2019 di Byron Reese, ed \u00e8 co-autore di \u2018Cosa e Dove: strategie digitali di ricerca del lavoro\u2019, tutti editi da FrancoAngeli. In passato \u00e8 stato curatore di StartupDigest Italy, coordinatore scientifico del Forum per la Ricerca della Provincia Autonoma di Trento, board member di TechChill Milano advisor di di ScaleIT , ha collaborato con Il Sole 24 Ore \u00e8 stato direttore di Innov\u2019azione, bimestrale edito da Apsti, ha collaborato con Corriere Innovazione ed \u00e8 stato presidente del comitato di selezione del Premio Marzotto e advisor di Cetif-Universit\u00e0 Cattolica Milano.","sameAs":["https:\/\/www.abirascid.com\/","https:\/\/www.linkedin.com\/in\/emilabirascid","https:\/\/x.com\/emilabirascid"],"url":"https:\/\/www.startupbusiness.it\/en\/author\/emil-abirascid\/"}]}},"author_name":"Emil Abirascid","categories_names":["Learn"],"_links":{"self":[{"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/posts\/171120","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/users\/125"}],"replies":[{"embeddable":true,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/comments?post=171120"}],"version-history":[{"count":1,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/posts\/171120\/revisions"}],"predecessor-version":[{"id":171121,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/posts\/171120\/revisions\/171121"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/media\/171119"}],"wp:attachment":[{"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/media?parent=171120"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/categories?post=171120"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/tags?post=171120"},{"taxonomy":"companies","embeddable":true,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/companies?post=171120"},{"taxonomy":"journalist","embeddable":true,"href":"https:\/\/www.startupbusiness.it\/en\/wp-json\/wp\/v2\/journalist?post=171120"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}