{"id":31349,"date":"2025-02-22T11:01:44","date_gmt":"2025-02-22T04:01:44","guid":{"rendered":"https:\/\/sgu.ac.id\/?p=31349"},"modified":"2025-03-04T12:56:22","modified_gmt":"2025-03-04T05:56:22","slug":"architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system","status":"publish","type":"post","link":"https:\/\/sgu.ac.id\/id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/","title":{"rendered":"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System"},"content":{"rendered":"<p>Artificial intelligence (AI) is becoming increasingly important in the enterprise as businesses seek ways to enhance decision-making, automate processes, and gain insights from data. AI systems, which generate outputs that can influence real or virtual environments, can help organizations achieve these objectives.<\/p>\n\n\n\n<p>Enterprise AI is applying AI technologies to optimize operations, enhance decision-making, and create new products and services. This includes various AI systems, such as Classifiers, Generative Models, and Recommenders.<\/p>\n\n\n\n<p>Enterprise AI aims to leverage these AI capabilities to improve efficiency, reduce costs, gain a competitive advantage, and achieve strategic objectives.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Challenges of Architecting AI Systems<\/h2>\n\n\n\n<p>Therefore, a new approach is needed to address these limitations and foster the development of AI systems. However, architecting such systems presents unique challenges.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Need to guard AI system from queries that not the focus of the AI System<\/li>\n\n\n\n<li>Reasoning Error should not be passed to user prompt<\/li>\n\n\n\n<li>Monitoring the performance of AI System that still within expected company policy and guidelines<\/li>\n<\/ul>\n\n\n\n<p>Those among other early challenges to design RAG system for AI LLM. There is a good proposal from the source cited that can be considered in architecting an Enterprise RAG.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Building an Enterprise RAG System<\/h2>\n\n\n\n<p>There are key components that constitute the development of Enterprise RAG.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"645\" src=\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp\" alt=\"\" class=\"wp-image-31350\" srcset=\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp 1024w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-768x484.webp 768w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1536x968.webp 1536w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-2048x1290.webp 2048w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-18x12.webp 18w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-139x89.webp 139w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-409x258.webp 409w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-818x516.webp 818w,  https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-255x161.webp 255w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"user-authentication\">User authentication<\/h3>\n\n\n\n<p>The first component in our system! Before the user can even start interacting with the chatbot, we need to authenticate the user for various reasons. Authentication helps with security and personalization, which is a must for enterprise systems.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"input-guardrail\">Input guardrail<\/h3>\n\n\n\n<p>It\u2019s essential to prevent user inputs that can be harmful or contain private information. Recent studies have shown it&#8217;s easy to&nbsp;<a href=\"https:\/\/llm-attacks.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">jailbreak LLMs<\/a>. Here\u2019s where input guardrails come in. Let&#8217;s have a look at different scenarios for which we need guardrails.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"query-rewriter\">Query rewriter<\/h3>\n\n\n\n<p>Once the query passes the input guardrail, we send it to the query rewriter. Sometimes, user queries can be vague or require context to understand the user&#8217;s intention better. Query rewriting is a technique that helps with this. It involves transforming user queries to enhance clarity, precision, and relevance. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"encoder\">Encoder<\/h3>\n\n\n\n<p>Once we have the original and rewritten queries, we encode them into vectors (a list of numbers) for retrieval.&nbsp;<strong><em>Choosing an encoder is probably the most important decision in building your RAG system.<\/em>&nbsp;<\/strong>Let\u2019s<strong>&nbsp;<\/strong>explore why and the factors to consider when choosing your text encoder.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"document-ingestion\">Document ingestion<\/h3>\n\n\n\n<p>The Document ingestion system manages the processing and persistence of data. During the indexing process each document is split into smaller chunks that are converted into an embedding using an embedding model. The original chunk and the embedding are then indexed in a database. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"chunker\">Chunker<\/h3>\n\n\n\n<p>How you decide to tokenize (break) longform text can decide the quality of your embeddings and the performance of your search system. If chunks are too small, certain questions cannot be answered; if the chunks are too long, then the answers include generated noise. You can exploit&nbsp;<a href=\"https:\/\/www.youtube.com\/watch?v=qaPMdcCqtWk\" target=\"_blank\" rel=\"noreferrer noopener\">summarisation<\/a>&nbsp;techniques to reduce noise, text size, encoding cost and storage cost.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"indexer\">Indexer<\/h3>\n\n\n\n<p>The indexer is responsible for creating an index of the documents, which serves as a structured data structure. The indexer facilitates efficient search and retrieval operations.\u00a0<strong>Efficient indexing is crucial for quick and accurate document retrieval.<\/strong>\u00a0It involves mapping the chunks or tokens to their corresponding locations in the document collection. The indexer performs vital tasks in document retrieval, including creating an index and adding, updating, or deleting documents.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"data-storage\">Data storage<\/h3>\n\n\n\n<p>Since we are dealing with a variety of data we need dedicated storage for each of them. It\u2019s critical to understand the different considerations for every storage type and specific use cases of each. There are three categories: Embeddings, Documents and Chat History.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"vector-database\">Vector database<\/h3>\n\n\n\n<p>The vector database powering the semantic search is a crucial retrieval component of RAG. However, selecting this component appropriately is vital to avoid potential issues.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"document-ingestion\">Document ingestion<\/h3>\n\n\n\n<p>The Document ingestion system manages the processing and persistence of data. During the indexing process each document is split into smaller chunks that are converted into an embedding using an embedding model. The original chunk and the embedding are then indexed in a database. Let&#8217;s look at the components of the document ingestion system.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"generator\">Generator<\/h3>\n\n\n\n<p>It requires careful considerations and trade-offs mainly between self-hosted inference deployment and private API services.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"output-guardrail\">Output guardrail<\/h3>\n\n\n\n<p>The output guardrail functions similarly to its input counterpart but is specifically tailored to detect issues in the generated output. It focuses on identifying hallucinations, competitor mentions, and potential brand damage as part of&nbsp;<a href=\"https:\/\/www.galileo.ai\/blog\/mastering-rag-8-scenarios-to-test-before-going-to-production\" target=\"_blank\" rel=\"noreferrer noopener\">RAG evaluation<\/a>. The goal is to prevent generating inaccurate or ethically questionable information that may not align with the brand&#8217;s values. By actively monitoring and analyzing the output, this guardrail ensures that the generated content remains factually accurate, ethically sound, and consistent with the brand&#8217;s guidelines.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"user-feedback\">User feedback<\/h3>\n\n\n\n<p>Once an output is generated and served, it is helpful to get both positive or negative feedback from users. User feedback can be very helpful for improving the flywheel of the RAG system, which is a continuous journey rather than a one-time endeavor. This entails not only the routine execution of automated tasks like reindexing and experiment reruns but also a systematic approach to integrate user insights for substantial system enhancements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"observability\">Observability<\/h3>\n\n\n\n<p>Building a RAG system does not end with putting the system into production. Even with robust guardrails and high-quality data for&nbsp;<a href=\"https:\/\/www.galileo.ai\/blog\/optimizing-llm-performance-rag-vs-finetune-vs-both\" target=\"_blank\" rel=\"noreferrer noopener\">fine-tuning<\/a>, models require constant monitoring once in production. Generative AI apps, in addition to standard metrics like latency and cost, need specific&nbsp;<a href=\"https:\/\/docs.galileo.ai\/galileo\/llm-studio\/llm-monitor\" target=\"_blank\" rel=\"noreferrer noopener\">LLM observability<\/a>&nbsp;to detect and correct issues such as hallucinations, out-of-domain queries, and chain failures. Now let&#8217;s have a look at the pillars of LLM observability.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"caching\">Caching<\/h3>\n\n\n\n<p>For companies operating at scale, cost can become a hindrance. Caching is a great way to save money in such cases. Caching involves the storage of prompts and their corresponding responses in a database, enabling their retrieval for subsequent use. This strategic caching mechanism empowers LLM applications to expedite and economize responses with three distinct advantages.<\/p>\n\n\n\n<p>Source: https:\/\/www.galileo.ai\/blog\/mastering-rag-how-to-architect-an-enterprise-rag-system<\/p>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Artificial intelligence (AI) is becoming increasingly important in the enterprise as businesses seek ways to enhance decision-making, automate processes, and gain insights from data. AI systems, which generate outputs that can influence real or virtual environments, can help organizations achieve these objectives. Enterprise AI is applying AI technologies to optimize operations, enhance decision-making, and create<\/p>","protected":false},"author":38,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_themeisle_gutenberg_block_has_review":false,"footnotes":""},"categories":[202,513],"tags":[],"class_list":["post-31349","post","type-post","status-publish","format-standard","hentry","category-blog","category-blog-mit"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System &#8211; Swiss German University<\/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:\/\/sgu.ac.id\/id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/\" \/>\n<meta property=\"og:locale\" content=\"id_ID\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System &#8211; Swiss German University\" \/>\n<meta property=\"og:description\" content=\"Artificial intelligence (AI) is becoming increasingly important in the enterprise as businesses seek ways to enhance decision-making, automate processes, and gain insights from data. AI systems, which generate outputs that can influence real or virtual environments, can help organizations achieve these objectives. Enterprise AI is applying AI technologies to optimize operations, enhance decision-making, and create\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sgu.ac.id\/id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/\" \/>\n<meta property=\"og:site_name\" content=\"Swiss German University\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/swissgermanuniv\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-22T04:01:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-04T05:56:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"645\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Heru P. Ipung\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@swissgermanuniv\" \/>\n<meta name=\"twitter:site\" content=\"@swissgermanuniv\" \/>\n<meta name=\"twitter:label1\" content=\"Ditulis oleh\" \/>\n\t<meta name=\"twitter:data1\" content=\"Heru P. Ipung\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimasi waktu membaca\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 menit\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/\"},\"author\":{\"name\":\"Heru P. Ipung\",\"@id\":\"https:\/\/sgu.ac.id\/#\/schema\/person\/f714f62d706dd034188e8efdef5d4b47\"},\"headline\":\"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System\",\"datePublished\":\"2025-02-22T04:01:44+00:00\",\"dateModified\":\"2025-03-04T05:56:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/\"},\"wordCount\":1029,\"publisher\":{\"@id\":\"https:\/\/sgu.ac.id\/#organization\"},\"image\":{\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp\",\"articleSection\":[\"Blog\",\"Blog MIT\"],\"inLanguage\":\"id\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/\",\"url\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/\",\"name\":\"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System &#8211; Swiss German University\",\"isPartOf\":{\"@id\":\"https:\/\/sgu.ac.id\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp\",\"datePublished\":\"2025-02-22T04:01:44+00:00\",\"dateModified\":\"2025-03-04T05:56:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage\",\"url\":\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp\",\"contentUrl\":\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sgu.ac.id\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sgu.ac.id\/#website\",\"url\":\"https:\/\/sgu.ac.id\/\",\"name\":\"Swiss German University\",\"description\":\"Your Way to Global Success\",\"publisher\":{\"@id\":\"https:\/\/sgu.ac.id\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sgu.ac.id\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"id\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/sgu.ac.id\/#organization\",\"name\":\"Swiss German University\",\"url\":\"https:\/\/sgu.ac.id\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/sgu.ac.id\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2021\/12\/logo-sgu-square.jpg\",\"contentUrl\":\"https:\/\/sgu.ac.id\/wp-content\/uploads\/2021\/12\/logo-sgu-square.jpg\",\"width\":1000,\"height\":1000,\"caption\":\"Swiss German University\"},\"image\":{\"@id\":\"https:\/\/sgu.ac.id\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/swissgermanuniv\/\",\"https:\/\/x.com\/swissgermanuniv\",\"https:\/\/www.instagram.com\/swissgermanuniv\/\",\"https:\/\/www.linkedin.com\/school\/swiss-german-university\/\",\"https:\/\/www.youtube.com\/channel\/UCKCJOB9lHSufRRtdmZ1rr1g\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/sgu.ac.id\/#\/schema\/person\/f714f62d706dd034188e8efdef5d4b47\",\"name\":\"Heru P. Ipung\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/sgu.ac.id\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c4ce00f2513213d7aa409b84ef2cb62af0e3b664e99a8029ee175edb69857e48?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c4ce00f2513213d7aa409b84ef2cb62af0e3b664e99a8029ee175edb69857e48?s=96&d=mm&r=g\",\"caption\":\"Heru P. Ipung\"},\"url\":\"https:\/\/sgu.ac.id\/id\/author\/heruipung\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System &#8211; Swiss German University","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:\/\/sgu.ac.id\/id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/","og_locale":"id_ID","og_type":"article","og_title":"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System &#8211; Swiss German University","og_description":"Artificial intelligence (AI) is becoming increasingly important in the enterprise as businesses seek ways to enhance decision-making, automate processes, and gain insights from data. AI systems, which generate outputs that can influence real or virtual environments, can help organizations achieve these objectives. Enterprise AI is applying AI technologies to optimize operations, enhance decision-making, and create","og_url":"https:\/\/sgu.ac.id\/id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/","og_site_name":"Swiss German University","article_publisher":"https:\/\/www.facebook.com\/swissgermanuniv\/","article_published_time":"2025-02-22T04:01:44+00:00","article_modified_time":"2025-03-04T05:56:22+00:00","og_image":[{"width":1024,"height":645,"url":"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp","type":"image\/webp"}],"author":"Heru P. Ipung","twitter_card":"summary_large_image","twitter_creator":"@swissgermanuniv","twitter_site":"@swissgermanuniv","twitter_misc":{"Ditulis oleh":"Heru P. Ipung","Estimasi waktu membaca":"5 menit"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#article","isPartOf":{"@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/"},"author":{"name":"Heru P. Ipung","@id":"https:\/\/sgu.ac.id\/#\/schema\/person\/f714f62d706dd034188e8efdef5d4b47"},"headline":"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System","datePublished":"2025-02-22T04:01:44+00:00","dateModified":"2025-03-04T05:56:22+00:00","mainEntityOfPage":{"@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/"},"wordCount":1029,"publisher":{"@id":"https:\/\/sgu.ac.id\/#organization"},"image":{"@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage"},"thumbnailUrl":"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp","articleSection":["Blog","Blog MIT"],"inLanguage":"id"},{"@type":"WebPage","@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/","url":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/","name":"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System &#8211; Swiss German University","isPartOf":{"@id":"https:\/\/sgu.ac.id\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage"},"image":{"@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage"},"thumbnailUrl":"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp","datePublished":"2025-02-22T04:01:44+00:00","dateModified":"2025-03-04T05:56:22+00:00","breadcrumb":{"@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/"]}]},{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#primaryimage","url":"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp","contentUrl":"https:\/\/sgu.ac.id\/wp-content\/uploads\/2025\/02\/Architecture-For-Enterprise-RAG-1024x645.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/sgu.ac.id\/architecting-enterprise-ai-series-architecting-an-enterprise-rag-retrieval-augmented-generation-system\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sgu.ac.id\/"},{"@type":"ListItem","position":2,"name":"Architecting Enterprise AI Series: Architecting an Enterprise RAG (Retrieval Augmented Generation) System"}]},{"@type":"WebSite","@id":"https:\/\/sgu.ac.id\/#website","url":"https:\/\/sgu.ac.id\/","name":"Swiss German University","description":"Your Way to Global Success","publisher":{"@id":"https:\/\/sgu.ac.id\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sgu.ac.id\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"id"},{"@type":"Organization","@id":"https:\/\/sgu.ac.id\/#organization","name":"Swiss German University","url":"https:\/\/sgu.ac.id\/","logo":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/sgu.ac.id\/#\/schema\/logo\/image\/","url":"https:\/\/sgu.ac.id\/wp-content\/uploads\/2021\/12\/logo-sgu-square.jpg","contentUrl":"https:\/\/sgu.ac.id\/wp-content\/uploads\/2021\/12\/logo-sgu-square.jpg","width":1000,"height":1000,"caption":"Swiss German University"},"image":{"@id":"https:\/\/sgu.ac.id\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/swissgermanuniv\/","https:\/\/x.com\/swissgermanuniv","https:\/\/www.instagram.com\/swissgermanuniv\/","https:\/\/www.linkedin.com\/school\/swiss-german-university\/","https:\/\/www.youtube.com\/channel\/UCKCJOB9lHSufRRtdmZ1rr1g"]},{"@type":"Person","@id":"https:\/\/sgu.ac.id\/#\/schema\/person\/f714f62d706dd034188e8efdef5d4b47","name":"Heru P. Ipung","image":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/sgu.ac.id\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c4ce00f2513213d7aa409b84ef2cb62af0e3b664e99a8029ee175edb69857e48?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c4ce00f2513213d7aa409b84ef2cb62af0e3b664e99a8029ee175edb69857e48?s=96&d=mm&r=g","caption":"Heru P. Ipung"},"url":"https:\/\/sgu.ac.id\/id\/author\/heruipung\/"}]}},"_links":{"self":[{"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/posts\/31349","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/users\/38"}],"replies":[{"embeddable":true,"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/comments?post=31349"}],"version-history":[{"count":1,"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/posts\/31349\/revisions"}],"predecessor-version":[{"id":31351,"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/posts\/31349\/revisions\/31351"}],"wp:attachment":[{"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/media?parent=31349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/categories?post=31349"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sgu.ac.id\/id\/wp-json\/wp\/v2\/tags?post=31349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}