{"id":113224,"date":"2026-06-01T22:40:56","date_gmt":"2026-06-01T17:10:56","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=113224"},"modified":"2026-06-01T22:40:57","modified_gmt":"2026-06-01T17:10:57","slug":"expert-system-in-ai-architecture","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/expert-system-in-ai-architecture\/","title":{"rendered":"Expert System in AI: Architecture, Types &#038; Applications"},"content":{"rendered":"\n<p>Artificial Intelligence did not begin with today\u2019s advanced chatbots and generative AI tools. Long before modern AI became mainstream, researchers were already developing systems that could imitate human thinking and decision-making. One of the earliest and most influential innovations to emerge from this effort was the expert system.&nbsp;<\/p>\n\n\n\n<p>Today, expert systems still play an important role in industries that require structured decision-making, rule-based automation, and diagnostic support. From medical diagnosis tools to banking fraud checks, expert systems continue to influence how AI-driven decisions are made.<\/p>\n\n\n\n<p>In this article, you\u2019ll learn what an expert system in AI is, how it works, its components, advantages, limitations, applications, and how modern AI systems build upon these foundations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR<\/strong><\/h2>\n\n\n\n<ol>\n<li>An expert system in AI is a rule-based AI program designed to mimic human expert decision-making in a specific domain.<\/li>\n\n\n\n<li>It uses a knowledge base and an inference engine to analyze information and generate conclusions.<\/li>\n\n\n\n<li>Expert systems are widely used in healthcare, banking, customer support, manufacturing, and diagnostic systems.<\/li>\n\n\n\n<li>Modern AI combines expert systems with machine learning, fuzzy logic, and automation for better accuracy.<\/li>\n\n\n\n<li>Understanding expert systems helps intermediate learners grasp how early AI reasoning and decision-support systems worked.<\/li>\n<\/ol>\n\n\n\n<div class=\"guvi-answer-card\" style=\"margin: 40px 0;\">\n\n  <div style=\"\n    position: relative;\n    background: linear-gradient(135deg, #f0fff4, #e6f7ee);\n    border: 1px solid #cfeedd;\n    padding: 26px 24px 22px 24px;\n    border-radius: 14px;\n    font-family: Arial, sans-serif;\n    box-shadow: 0 6px 16px rgba(0,0,0,0.05);\n  \">\n\n    <!-- Top accent -->\n    <div style=\"\n      position: absolute;\n      top: 0;\n      left: 0;\n      height: 6px;\n      width: 100%;\n      background: linear-gradient(to right, #099f4e, #6dd5a3);\n      border-radius: 14px 14px 0 0;\n    \"><\/div>\n\n    <!-- Title -->\n    <h3 style=\"\n      margin: 10px 0 12px 0;\n      color: #099f4e;\n      font-size: 20px;\n    \">\n      What Is an Expert System in AI?\n    <\/h3>\n\n    <!-- Content -->\n    <p style=\"\n      margin: 0;\n      color: #2f4f3f;\n      font-size: 16px;\n      line-height: 1.7;\n    \">\n      An expert system in AI is a computer program that uses a knowledge base and a set of predefined rules to solve problems that typically require human expertise. Rather than learning from large datasets like modern machine learning models, it relies on knowledge collected from domain experts and applies logical reasoning to make decisions or provide recommendations. The primary goal of an expert system is to deliver intelligent decision support and expert-level guidance in specialized fields such as medicine, finance, engineering, and troubleshooting.\n    <\/p>\n\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Expert Systems Work?<\/strong><\/h2>\n\n\n\n<p>An expert system uses reasoning to process data, comparing user input to the rules held within its knowledge base, reaching a decision via an inference engine.<\/p>\n\n\n\n<p>The steps of how an expert system works are generally as follows:<\/p>\n\n\n\n<ol>\n<li>Input of data or problem from the user.<\/li>\n\n\n\n<li>The system looks at the rules stored in the knowledge base and finds the corresponding rule.<\/li>\n\n\n\n<li>An inference engine uses reasoning to make decisions from the rules and available facts.<\/li>\n\n\n\n<li>Recommendations or decisions can be made.<\/li>\n\n\n\n<li>The explanation module may be used to describe the reasoning behind decisions made.<\/li>\n<\/ol>\n\n\n\n<p>The main reasoning method used in many expert systems is a rule-based approach, which follows:<\/p>\n\n\n\n<p>IF Condition THEN Action&nbsp;<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<p>IF patient has fever AND cough<\/p>\n\n\n\n<p>THEN possible disease = flu<\/p>\n\n\n\n<p>The IF THEN rule logic ensures that the system delivers a consistent and understandable output.<\/p>\n\n\n\n<p>The inference engine uses logical reasoning to apply rules and available information to determine possible outcomes, which is a core concept in<a href=\"https:\/\/www.guvi.in\/blog\/inference-in-ai-artificial-intelligence\/\" target=\"_blank\" rel=\"noreferrer noopener\"> Inference in AI<\/a>.\u00a0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Components of an Expert System<\/strong><\/h2>\n\n\n\n<p>It contains many elements that contribute to its functionality.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Knowledge Base<\/strong><\/h3>\n\n\n\n<p>A database of the rules, facts, and expert knowledge within a particular domain, which has been collected from experts. This serves as a place of reference for expert knowledge.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<p>IF blood pressure &gt; 140\/90<\/p>\n\n\n\n<p>THEN hypertension risk = high<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Inference Engine<\/strong><\/h3>\n\n\n\n<p>This is the reasoning part of the system; it uses the rules to come up with conclusions from the known data and rules.<\/p>\n\n\n\n<p>Two types of reasoning:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Forward Chaining<\/strong><\/h4>\n\n\n\n<p>Start from the facts to conclude.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Backward Chaining<\/strong><\/h4>\n\n\n\n<p>Starts from the end goal to trace back to what is required.<\/p>\n\n\n\n<p>The two primary forms of reasoning used are<a href=\"https:\/\/www.guvi.in\/blog\/forward-chaining-and-backward-chaining-in-artificial-intelligence\/\" target=\"_blank\" rel=\"noreferrer noopener\"> Forward Chaining<\/a> and Backward Chaining, both widely used in AI decision-making systems\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. User Interface<\/strong><\/h3>\n\n\n\n<p>The interface used for the user to interact with the system. User provides data\/problem, system provides solution\/recommendation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Explanation System<\/strong><\/h3>\n\n\n\n<p>This is a module to help explain how the system has derived its decision\/recommendation, and makes the system understandable and reliable.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Knowledge Acquisition Module<\/strong><\/h3>\n\n\n\n<p>This helps acquire the knowledge from domain specialists and encode it into the system.<\/p>\n\n\n\n<p>Expert systems rely on a structured collection of rules and logic, similar to other approaches used in<a href=\"https:\/\/www.guvi.in\/blog\/what-is-knowledge-representation-in-ai\/\" target=\"_blank\" rel=\"noreferrer noopener\"> Knowledge Representation in AI<\/a>\u00a0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Architecture of Expert Systems<\/strong><\/h2>\n\n\n\n<p>The architecture of an expert system typically comprises:<\/p>\n\n\n\n<p>User<\/p>\n\n\n\n<p>\u2193<\/p>\n\n\n\n<p>User Interface<\/p>\n\n\n\n<p>\u2193<\/p>\n\n\n\n<p>Inference Engine<\/p>\n\n\n\n<p>\u2193<\/p>\n\n\n\n<p>Knowledge Base<\/p>\n\n\n\n<p>\u2193<\/p>\n\n\n\n<p>Explanation Module<\/p>\n\n\n\n<p>The system uses all the components together to intelligently make decisions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Types of Expert Systems<\/strong><\/h2>\n\n\n\n<p>Various types of expert systems operate using different methods of problem-solving.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Rule-Based Expert Systems<\/strong><\/h3>\n\n\n\n<p>These operate using IF THEN rules, which form a specific solution to each given problem.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Fuzzy Expert Systems<\/strong><\/h3>\n\n\n\n<p>These work based on fuzzy logic and do not necessarily produce a true or false output. These are more adaptable to ambiguous inputs.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<p>Temperature = slightly high<\/p>\n\n\n\n<p>Risk = moderately dangerous<\/p>\n\n\n\n<p>Fuzzy systems can be useful in medical analysis, climate-based systems, and automation control in manufacturing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Neural Expert Systems<\/strong><\/h3>\n\n\n\n<p>These are the combination of neural networks and expert reasoning systems.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Frame-Based Systems<\/strong><\/h3>\n\n\n\n<p>These use a knowledge-based system, which is in the format of a structured data representation called a frame.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Neuro Fuzzy Systems<\/strong><\/h3>\n\n\n\n<p>The combination of neural networks and fuzzy logic provides a robust intelligent system.<\/p>\n\n\n\n<p>These operate using IF THEN rules, which are based on concepts commonly used in<a href=\"https:\/\/www.guvi.in\/blog\/propositional-logic-in-ai\/\" target=\"_blank\" rel=\"noreferrer noopener\"> Propositional Logic in AI<\/a>.\u00a0<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong>\n  <p style=\"margin-top: 14px; margin-bottom: 0;\">\n    <strong style=\"color: #FFFFFF;\">MYCIN<\/strong> was one of the most influential early <strong style=\"color: #FFFFFF;\">expert systems<\/strong>, developed at <strong style=\"color: #FFFFFF;\">Stanford University<\/strong> in the 1970s to help diagnose bacterial infections and recommend appropriate antibiotic treatments. Using hundreds of hand-crafted <strong style=\"color: #FFFFFF;\">if-then rules<\/strong>, MYCIN could reason about symptoms, laboratory results, and medical knowledge to reach conclusions. In evaluations, its diagnostic performance was often found to be comparable to that of experienced medical specialists of the time. Although MYCIN was never deployed in routine clinical practice, it demonstrated that computers could capture and apply expert knowledge effectively, helping lay the foundation for modern AI-based decision-support systems.\n  <\/p>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Applications of Expert Systems<\/strong><\/h2>\n\n\n\n<p>The applications of expert systems are still numerous and can provide immediate decision support for many industries.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Healthcare<\/strong><\/h3>\n\n\n\n<p>Medical diagnosis tools give doctors recommendations based on symptoms and history.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Banking and Finance<\/strong><\/h3>\n\n\n\n<p>Used for fraud detection, risk analysis, and loan approval.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Manufacturing<\/strong><\/h3>\n\n\n\n<p>Help with quality control and predicting equipment failures.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customer Support<\/strong><\/h3>\n\n\n\n<p>Can act as intelligent chatbots to guide users and troubleshoot technical problems.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Cybersecurity<\/strong><\/h3>\n\n\n\n<p>For monitoring systems and detecting intrusion.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Agriculture<\/strong><\/h3>\n\n\n\n<p>Used for crop disease analysis and farm management.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Example of a Simple Expert System in Python<\/strong><\/h2>\n\n\n\n<p>This is a basic demonstration of an expert system using a rule-based approach in Python.<\/p>\n\n\n\n<p>def medicalexpertsystem(symptom):<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;if symptom == &#8220;fever&#8221;:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return &#8220;Possible illness: Flu&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;elif symptom == &#8220;headache&#8221;:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return &#8220;Possible illness: Migraine&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;elif symptom == &#8220;cough&#8221;:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return &#8220;Possible illness: Cold&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;else:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return &#8220;Consult a doctor for further diagnosis&#8221;<\/p>\n\n\n\n<p>user_input = input(&#8220;Enter symptom: &#8220;)<\/p>\n\n\n\n<p>result = medicalexpertsystem(user_input.lower())<\/p>\n\n\n\n<p>print(result)<\/p>\n\n\n\n<p>This code example of an expert system highlights the simplicity of the rule-based expert system in action.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Advantages of Expert Systems<\/strong><\/h2>\n\n\n\n<p>There are many advantages to using expert systems. These include:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Consistent Decision Making<\/strong><\/h3>\n\n\n\n<p>They maintain the reliability of output by using rigid logic.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Fast Problem Solving<\/strong><\/h3>\n\n\n\n<p>Speed is gained due to logical processing without human intervention.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Preservation of Expert Knowledge<\/strong><\/h3>\n\n\n\n<p>Help retain expertise, regardless of the physical presence of human experts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Reduced Human Error<\/strong><\/h3>\n\n\n\n<p>Remove the possibility of inconsistency and mistakes from human input.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>24\/7 Availability<\/strong><\/h3>\n\n\n\n<p>Available at all times, 24 hours a day and 7 days a week.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Limitations of Expert Systems<\/strong><\/h2>\n\n\n\n<p>Despite many advantages, expert systems still have many disadvantages:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Limited Learning Ability<\/strong><\/h3>\n\n\n\n<p>It do not learn independently from new data.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>High Development Cost<\/strong><\/h3>\n\n\n\n<p>Can be expensive and time-consuming to build a knowledge base, especially a complex one.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Rule Complexity<\/strong><\/h3>\n\n\n\n<p>Thousands of rules become problematic to maintain as the it develops.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Lack of Human Creativity<\/strong><\/h3>\n\n\n\n<p>These systems cannot think with intuition, creativity, emotion, or common sense reasoning.<\/p>\n\n\n\n<p>You can further develop your knowledge on these concepts using <strong>HCL GUVI\u2019s<\/strong> Artificial Intelligence <a href=\"https:\/\/www.guvi.in\/mlp\/genai-ebook\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Expert+System+in+AI%3A+Architecture%2C+Types+%26+Applications\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Ebook<\/strong><\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Expert Systems vs Machine Learning<\/strong><\/h2>\n\n\n\n<p>It is important to distinguish between expert systems and machine learning. Both are related to artificial intelligence; however, the differences are notable.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Feature<\/strong><\/td><td><strong>Expert Systems<\/strong><\/td><td><strong>Machine Learning<\/strong><\/td><\/tr><tr><td>Learning Method<\/td><td>Rule based<\/td><td>Data driven<\/td><\/tr><tr><td>Knowledge Source<\/td><td>Human experts<\/td><td>Training datasets<\/td><\/tr><tr><td>Explainability<\/td><td>High<\/td><td>Often lower<\/td><\/tr><tr><td>Adaptability<\/td><td>Limited<\/td><td>High<\/td><\/tr><tr><td>Decision Process<\/td><td>Logical rules<\/td><td>Statistical patterns<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Modern approaches tend to use both these approaches to improve system performance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Future of Expert Systems in AI<\/strong><\/h2>\n\n\n\n<p>Expert systems are still relevant within the field of artificial intelligence, and their integration with other fields is increasing. They are beginning to merge with machine learning, automation, predictive analytics, and large language models.<\/p>\n\n\n\n<p>Future expert systems can include:<\/p>\n\n\n\n<ol>\n<li>Improved explainability features<\/li>\n\n\n\n<li>Real-time decision making<\/li>\n\n\n\n<li>Integration with Internet of Things (IoT) devices<\/li>\n\n\n\n<li>AI-enhanced healthcare diagnostics<\/li>\n\n\n\n<li>Combined neuro-fuzzy reasoning systems<\/li>\n<\/ol>\n\n\n\n<p>It is expected that, as AI governance and transparency gain traction, rule-based expert systems will be increasingly sought after again.<\/p>\n\n\n\n<p>Understanding logical reasoning systems, such as<a href=\"https:\/\/www.guvi.in\/blog\/first-order-logic-in-ai-complete-guide\/\" target=\"_blank\" rel=\"noreferrer noopener\"> First Order Logic, in AI<\/a> can help learners better understand how expert systems process knowledge.\u00a0<\/p>\n\n\n\n<p>After learning the fundamentals of AI systems, you can strengthen your practical AI skills through <strong>HCl GUVI\u2019s<\/strong> <a href=\"https:\/\/www.guvi.in\/courses\/machine-learning-and-ai\/mastering-ai-and-machine-learning\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Expert+System+in+AI%3A+Architecture%2C+Types+%26+Applications\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>AI &amp; Machine Learning<\/strong><\/a><strong> <\/strong>Course, which covers machine learning, deep learning, NLP, and real-world AI applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Expert systems played a foundational role in the evolution of artificial intelligence. They introduced structured reasoning, knowledge representation, and intelligent decision support long before modern AI models became mainstream.<\/p>\n\n\n\n<p>Even today, it remain valuable in industries that require explainable, rule-based, and reliable decision-making. Understanding how they work helps build a strong foundation in AI reasoning and intelligent system design.<\/p>\n\n\n\n<p>As AI continues evolving, expert systems are increasingly being combined with machine learning and automation to create smarter and more adaptive intelligent systems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1780250255018\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is an expert system in AI?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>An expert system is a rule-based AI program designed to mimic human expert decision-making in a specific domain.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780250264977\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. What are the main components of an expert system?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The main components include the knowledge base, inference engine, user interface, explanation system, and knowledge acquisition module.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780250283121\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. What is the difference between expert systems and machine learning?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Expert systems use predefined rules created by humans, while machine learning models learn patterns from data.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780250309849\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Where are expert systems used?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>They are used in healthcare, banking, manufacturing, cybersecurity, agriculture, and customer support systems.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780250332306\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. Are expert systems still relevant today?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Expert systems remain useful in domains that require explainable AI, structured reasoning, and reliable decision support.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Artificial Intelligence did not begin with today\u2019s advanced chatbots and generative AI tools. Long before modern AI became mainstream, researchers were already developing systems that could imitate human thinking and decision-making. One of the earliest and most influential innovations to emerge from this effort was the expert system.&nbsp; Today, expert systems still play an important [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":113730,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[933],"tags":[],"views":"21","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/06\/expert-system-in-ai-architecture-300x116.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/06\/expert-system-in-ai-architecture.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113224"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=113224"}],"version-history":[{"count":5,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113224\/revisions"}],"predecessor-version":[{"id":113723,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113224\/revisions\/113723"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/113730"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=113224"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=113224"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=113224"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}