{"id":53836,"date":"2025-09-15T10:46:12","date_gmt":"2025-09-15T00:46:12","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/?p=53836"},"modified":"2025-09-15T10:46:14","modified_gmt":"2025-09-15T00:46:14","slug":"architecture-of-rag-building-reliable-retrieval-augmented-ai","status":"publish","type":"post","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/","title":{"rendered":"Architecture of RAG Building Reliable Retrieval Augmented AI"},"content":{"rendered":"\n<p>In this blog post Architecture of RAG Building Reliable Retrieval Augmented AI we will unpack how Retrieval Augmented Generation works, what to build first, and how to run it reliably in production.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Retrieval Augmented Generation (<a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/category\/rag\/\">RAG<\/a>) combines a large language model (LLM) with your own knowledge to produce grounded, current, and auditable answers. Instead of relying on a model\u2019s memory, RAG pulls the right facts at query time and asks the model to write with them. The result: fewer hallucinations, better explainability, and control over data access.<\/p>\n\n\n\n<p>This post starts with a clear overview, then dives into the technology and architecture. We\u2019ll finish with a small, end\u2011to\u2011end Python example and a practical checklist you can use on day one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-rag-and-why-it-matters\">What is RAG and why it matters<\/h2>\n\n\n\n<p>RAG is a pattern where an <a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/category\/llm\/\">LLM <\/a>is augmented with an external retrieval system. When a user asks a question, the system searches your content (wikis, PDFs, tickets, databases), retrieves the most relevant snippets, and feeds them into the model\u2019s prompt. The LLM then answers using that context and cites sources.<\/p>\n\n\n\n<p>Why it matters: you control the knowledge, you can update it without retraining, and you can audit what informed each answer. This makes RAG a strong fit for support automation, internal assistants, document Q&amp;A, and regulated environments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-technology-behind-rag\">The technology behind RAG<\/h2>\n\n\n\n<p>Three technologies power RAG:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>LLMs<\/strong> generate text and follow instructions. They are excellent writers but can invent facts when uncertain. RAG reduces that risk by grounding the model with retrieved context.<\/li>\n\n\n\n<li><strong>Embeddings<\/strong> turn text into high-dimensional vectors so we can measure semantic similarity. Sentences with similar meaning have similar vectors.<\/li>\n\n\n\n<li><strong>Vector search<\/strong> finds the closest vectors to a query embedding quickly, even across millions of chunks. Stores range from FAISS (in-process) to managed services like Pinecone, Weaviate, Qdrant, or Postgres with pgvector.<\/li>\n<\/ul>\n\n\n\n<p>A thin orchestration layer ties these together: transforming the query, running retrieval, optionally re-ranking results, constructing the prompt, calling the LLM, and capturing telemetry.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core-components-of-a-rag-architecture\">Core components of a RAG architecture<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-ingestion-and-preprocessing\">1) Ingestion and preprocessing<\/h3>\n\n\n\n<p>Good answers start with good content. Ingest from files, web, knowledge bases, or databases through connectors. Normalize text, remove boilerplate, preserve structure (titles, headings), and attach metadata (source, author, date, permissions).<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Chunking<\/strong>: Split documents into chunks that match the LLM\u2019s memory window and your retrieval needs. Common sizes are 300\u20131,000 tokens with overlaps of 10\u201320% to keep context intact.<\/li>\n\n\n\n<li><strong>PII and compliance<\/strong>: Redact or tag sensitive fields at ingestion. Keep an auditable lineage: document version, chunk ID, and hash.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-embeddings-and-vector-store\">2) Embeddings and vector store<\/h3>\n\n\n\n<p>Choose an embedding model suitable for your language and domain (e.g., E5, Instructor, or commercial APIs). Store vectors and metadata in a vector database. Keep raw text in object storage if you need to re-embed or re-chunk later.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Dimensionality<\/strong>: Higher dimensions can capture nuance but increase storage and latency. 384\u20131,536 dims are common.<\/li>\n\n\n\n<li><strong>Index type<\/strong>: For production, prefer approximate nearest neighbor (ANN) indexes (HNSW, IVF) to keep latency low at scale.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-retrieval-pipeline\">3) Retrieval pipeline<\/h3>\n\n\n\n<p>At query time, transform and search:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Query understanding<\/strong>: Expand acronyms, add synonyms, or rewrite to optimize retrieval. Lightweight rules or an LLM can help.<\/li>\n\n\n\n<li><strong>Hybrid search<\/strong>: Combine vector and keyword signals to balance semantics and exact matches. Reciprocal rank fusion (RRF) is practical and effective.<\/li>\n\n\n\n<li><strong>Filters<\/strong>: Use metadata filters (date range, product, permissions) to enforce relevance and security.<\/li>\n\n\n\n<li><strong>Re-ranking<\/strong>: Use a cross-encoder or reranker to reorder the top N results for better precision before generation.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-4-generation-and-prompting\">4) Generation and prompting<\/h3>\n\n\n\n<p>Construct a prompt that instructs the LLM to use only provided context, cite sources, and be concise. Limit context length to avoid diluting relevance. Consider structured outputs (JSON) when downstream systems will parse results.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-5-guardrails-privacy-and-governance\">5) Guardrails, privacy, and governance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Moderation<\/strong>: Screen inputs and outputs for policy violations.<\/li>\n\n\n\n<li><strong>Access control<\/strong>: Apply row- or document-level permissions both at retrieval time and in cached results.<\/li>\n\n\n\n<li><strong>Data residency and encryption<\/strong>: Encrypt at rest and in transit. Keep clear boundaries between tenant data.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-6-caching-and-performance\">6) Caching and performance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Embedding cache<\/strong>: Avoid recomputing embeddings for unchanged text.<\/li>\n\n\n\n<li><strong>Query result cache<\/strong>: Cache retrieval results for frequent queries with short TTLs.<\/li>\n\n\n\n<li><strong>Prompt and response cache<\/strong>: Cache full LLM responses when appropriate to cut costs and latency.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-7-observability-and-evaluation\">7) Observability and evaluation<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Telemetry<\/strong>: Log query, retrieved chunks, chosen prompt, model response, and latencies with IDs for traceability.<\/li>\n\n\n\n<li><strong>Quality<\/strong>: Measure precision@k, hit rate, answer faithfulness, and citation correctness. Use human review and synthetic datasets to iterate.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-8-deployment-and-scaling\">8) Deployment and scaling<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Throughput<\/strong>: Scale embeddings and retrieval horizontally; use batch operations.<\/li>\n\n\n\n<li><strong>Latency budgets<\/strong>: Aim for 300\u2013900 ms retrieval and keep total P95 under your UX target (often 2\u20134 seconds).<\/li>\n\n\n\n<li><strong>Cost<\/strong>: Monitor token usage, index memory, and reranker compute. Right-size chunking to reduce waste.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-reference-patterns-you-can-adopt\">Reference patterns you can adopt<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-baseline-single-pass-rag\">Baseline single pass RAG<\/h3>\n\n\n\n<p>The simplest pipeline: embed query, retrieve top-k, optional rerank, build prompt, generate answer with citations. Great for FAQs, policy docs, and knowledge bases.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-multi-hop-and-graph-rag\">Multi-hop and graph RAG<\/h3>\n\n\n\n<p>For complex questions requiring multiple sources or relationships, chain retrieval steps or use a lightweight knowledge graph. The model can ask for a follow-up retrieval, summarize, then consolidate.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-agentic-rag-with-tools\">Agentic RAG with tools<\/h3>\n\n\n\n<p>Let the model decide when to search, when to read a table, or when to call an internal API. Add tool-use functions with guardrails and strict schemas to keep actions safe and auditable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-minimal-implementation-example-in-python\">Minimal implementation example in Python<\/h2>\n\n\n\n<p>This example indexes local documents with FAISS, retrieves top matches, and calls an LLM. Swap components to match your stack.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-e9bd16c17e342c0c01eb9805d3540171\"><code># pip install sentence-transformers faiss-cpu openai tiktoken\nimport os\nimport glob\nimport time\nfrom typing import List, Dict\n\nimport faiss\nimport numpy as np\nfrom sentence_transformers import SentenceTransformer, CrossEncoder\nfrom openai import OpenAI\n\n# 1) Load and chunk documents\n\ndef load_texts(path_pattern: str) -&gt; List&#91;Dict]:\n    docs = &#91;]\n    for fp in glob.glob(path_pattern):\n        with open(fp, 'r', encoding='utf-8', errors='ignore') as f:\n            text = f.read()\n        docs.append({\"id\": fp, \"text\": text})\n    return docs\n\n# Simple recursive chunking\n\ndef chunk(text: str, max_tokens: int = 500, overlap: int = 50) -&gt; List&#91;str]:\n    words = text.split()\n    chunks = &#91;]\n    i = 0\n    while i &lt; len(words):\n        chunk_words = words&#91;i : i + max_tokens]\n        chunks.append(\" \".join(chunk_words))\n        i += max_tokens - overlap\n    return chunks\n\n# 2) Build vector index\n\nemb_model = SentenceTransformer(\"intfloat\/e5-base-v2\")  # swap to your preference\n\nraw_docs = load_texts(\".\/docs\/**\/*.txt\")\nchunks, metadatas = &#91;], &#91;]\nfor d in raw_docs:\n    for i, c in enumerate(chunk(d&#91;\"text\"])):\n        chunks.append(c)\n        metadatas.append({\"doc_id\": d&#91;\"id\"], \"chunk_id\": i})\n\nembs = emb_model.encode(&#91;\"query: \" + c for c in chunks], normalize_embeddings=True)\nembs = np.array(embs).astype('float32')\n\nindex = faiss.IndexFlatIP(embs.shape&#91;1])  # cosine with normalized vectors\nindex.add(embs)\n\n# Optional: cross-encoder for reranking\nreranker = CrossEncoder(\"cross-encoder\/ms-marco-MiniLM-L-6-v2\")\n\n# 3) Retrieval function\n\ndef retrieve(query: str, k: int = 8, rerank_k: int = 20) -&gt; List&#91;int]:\n    q_emb = emb_model.encode(&#91;\"query: \" + query], normalize_embeddings=True).astype('float32')\n    scores, idxs = index.search(q_emb, rerank_k)\n    candidates = &#91;(int(i), float(s)) for i, s in zip(idxs&#91;0], scores&#91;0])]\n    # Rerank with cross-encoder for precision\n    pairs = &#91;&#91;query, chunks&#91;i]] for i, _ in candidates]\n    ce_scores = reranker.predict(pairs)\n    ranked = sorted(zip(&#91;i for i, _ in candidates], ce_scores), key=lambda x: x&#91;1], reverse=True)\n    return &#91;i for i, _ in ranked&#91;:k]]\n\n# 4) Prompt and generation\n\nclient = OpenAI(api_key=os.getenv(\"OPENAI_API_KEY\"))  # or your provider\n\nSYSTEM_PROMPT = (\n    \"You are a helpful assistant. Answer using ONLY the provided context. \"\n    \"If the answer isn't in the context, say you don't know. Cite sources as &#91;doc_id#chunk_id].\"\n)\n\ndef answer(query: str) -&gt; str:\n    top_idxs = retrieve(query)\n    ctx = &#91;]\n    for i in top_idxs:\n        md = metadatas&#91;i]\n        ctx.append(f\"&#91; {md&#91;'doc_id']}#{md&#91;'chunk_id']} ]\\n{chunks&#91;i]}\")\n    context = \"\\n\\n\".join(ctx)\n\n    prompt = (\n        f\"Context:\\n{context}\\n\\n\"\n        f\"Question: {query}\\n\"\n        f\"Answer:\"\n    )\n\n    resp = client.chat.completions.create(\n        model=\"gpt-4o-mini\",  # choose your model\n        messages=&#91;\n            {\"role\": \"system\", \"content\": SYSTEM_PROMPT},\n            {\"role\": \"user\", \"content\": prompt},\n        ],\n        temperature=0.2,\n    )\n    return resp.choices&#91;0].message.content\n\nif __name__ == \"__main__\":\n    q = \"What is our refund policy for annual plans?\"\n    t0 = time.time()\n    print(answer(q))\n    print(f\"\\nLatency: {time.time() - t0:.2f}s\")\n<\/code><\/pre>\n\n\n\n<p>This is intentionally minimal. In production, add streaming, retries, timeouts, permission filters, request\/response logging with IDs, and evaluation hooks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-common-pitfalls-and-how-to-avoid-them\">Common pitfalls and how to avoid them<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Overlong chunks<\/strong>: Huge chunks dilute relevance and waste tokens. Start with 500\u2013800 tokens with overlap, then tune.<\/li>\n\n\n\n<li><strong>No reranking<\/strong>: ANN recall is good but not perfect. A lightweight cross-encoder reranker boosts answer quality noticeably.<\/li>\n\n\n\n<li><strong>Missing metadata<\/strong>: Without source, author, date, and permissions, you cannot filter or audit. Capture this at ingestion.<\/li>\n\n\n\n<li><strong>Prompt bloat<\/strong>: Too much context hurts. Keep top-k small (4\u201310) and concise.<\/li>\n\n\n\n<li><strong>Static content<\/strong>: Re-embed when documents change. Maintain a versioned index with a background updater.<\/li>\n\n\n\n<li><strong>Zero observability<\/strong>: Log retrieval hits and misses. Tie user feedback to queries and documents to improve recall and precision.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-practical-checklist-to-get-started\">A practical checklist to get started<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Pick initial use cases where ground truth exists (FAQs, policies, SOPs).<\/li>\n\n\n\n<li>Ingest and chunk with metadata and access controls.<\/li>\n\n\n\n<li>Choose an embedding model and build a vector index (ANN).<\/li>\n\n\n\n<li>Implement retrieval with hybrid search and reranking.<\/li>\n\n\n\n<li>Design a grounded prompt with citations and clear style.<\/li>\n\n\n\n<li>Add guardrails: moderation, PII redaction, permission filters.<\/li>\n\n\n\n<li>Instrument everything: latencies, token counts, retrieval traces.<\/li>\n\n\n\n<li>Evaluate with precision@k, faithfulness, and human review.<\/li>\n\n\n\n<li>Introduce caching and autoscaling as traffic grows.<\/li>\n\n\n\n<li>Iterate: tune chunking, k, reranker, and prompt based on data.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-final-thoughts\">Final thoughts<\/h2>\n\n\n\n<p>RAG is less about a single model and more about a well-tuned system. If you get the plumbing right\u2014clean content, smart retrieval, crisp prompts, and strong observability\u2014you\u2019ll ship assistants that are accurate, fast, and trustworthy. Start simple, measure relentlessly, and evolve toward multi-hop or agentic patterns only when the use case demands it.<\/p>\n\n\n\n<ul class=\"wp-block-yoast-seo-related-links yoast-seo-related-links\">\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/08\/31\/understanding-openai-embedding-models\/\">Understanding OpenAI Embedding Models<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/08\/28\/cypher-queries-and-rag-technology-explained\/\">Cypher Queries and RAG Technology Explained<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/how-text-chunking-works-for-rag-pipelines\/\">How Text Chunking Works for RAG Pipelines<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/08\/26\/graphrag-explained\/\">GraphRAG Explained<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/07\/25\/understanding-transformers-the-architecture-driving-ai-innovation\/\">Understanding Transformers: The Architecture Driving AI Innovation<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>A practical guide to RAG architecture, from data ingestion to retrieval, generation, and evaluation, with patterns, pitfalls, and a minimal Python example you can adapt to your stack.<\/p>\n","protected":false},"author":1,"featured_media":53843,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Architecture of RAG Building Reliable Retrieval Augmented AI","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Explore the Architecture of RAG Building Reliable Retrieval Augmented AI and discover how to combine LLMs with knowledge for better answers.","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[13,77,87],"tags":[],"class_list":["post-53836","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-llm","category-rag"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Architecture of RAG Building Reliable Retrieval Augmented AI - CPI Consulting<\/title>\n<meta name=\"description\" content=\"Explore the Architecture of RAG Building Reliable Retrieval Augmented AI and discover how to combine LLMs with knowledge for better answers.\" \/>\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.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Architecture of RAG Building Reliable Retrieval Augmented AI\" \/>\n<meta property=\"og:description\" content=\"Explore the Architecture of RAG Building Reliable Retrieval Augmented AI and discover how to combine LLMs with knowledge for better answers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-15T00:46:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-15T00:46:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CPI Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Architecture of RAG Building Reliable Retrieval Augmented AI\",\"datePublished\":\"2025-09-15T00:46:12+00:00\",\"dateModified\":\"2025-09-15T00:46:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/\"},\"wordCount\":1196,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png\",\"articleSection\":[\"Blog\",\"LLM\",\"RAG\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/\",\"name\":\"Architecture of RAG Building Reliable Retrieval Augmented AI - CPI Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png\",\"datePublished\":\"2025-09-15T00:46:12+00:00\",\"dateModified\":\"2025-09-15T00:46:14+00:00\",\"description\":\"Explore the Architecture of RAG Building Reliable Retrieval Augmented AI and discover how to combine LLMs with knowledge for better answers.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/architecture-of-rag-building-reliable-retrieval-augmented-ai\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Architecture of RAG Building Reliable Retrieval Augmented AI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"width\":500,\"height\":500,\"caption\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\",\"name\":\"CPI Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"caption\":\"CPI Staff\"},\"sameAs\":[\"http:\\\/\\\/www.cloudproinc.com.au\"],\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Architecture of RAG Building Reliable Retrieval Augmented AI - CPI Consulting","description":"Explore the Architecture of RAG Building Reliable Retrieval Augmented AI and discover how to combine LLMs with knowledge for better answers.","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.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/","og_locale":"en_US","og_type":"article","og_title":"Architecture of RAG Building Reliable Retrieval Augmented AI","og_description":"Explore the Architecture of RAG Building Reliable Retrieval Augmented AI and discover how to combine LLMs with knowledge for better answers.","og_url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/","og_site_name":"CPI Consulting","article_published_time":"2025-09-15T00:46:12+00:00","article_modified_time":"2025-09-15T00:46:14+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai-1024x683.png","type":"image\/png"}],"author":"CPI Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#article","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Architecture of RAG Building Reliable Retrieval Augmented AI","datePublished":"2025-09-15T00:46:12+00:00","dateModified":"2025-09-15T00:46:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/"},"wordCount":1196,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png","articleSection":["Blog","LLM","RAG"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/","url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/","name":"Architecture of RAG Building Reliable Retrieval Augmented AI - CPI Consulting","isPartOf":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png","datePublished":"2025-09-15T00:46:12+00:00","dateModified":"2025-09-15T00:46:14+00:00","description":"Explore the Architecture of RAG Building Reliable Retrieval Augmented AI and discover how to combine LLMs with knowledge for better answers.","breadcrumb":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#primaryimage","url":"\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png","contentUrl":"\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudproinc.azurewebsites.net\/"},{"@type":"ListItem","position":2,"name":"Architecture of RAG Building Reliable Retrieval Augmented AI"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.azurewebsites.net\/#website","url":"https:\/\/cloudproinc.azurewebsites.net\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.azurewebsites.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.azurewebsites.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","contentUrl":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","width":500,"height":500,"caption":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd"},"image":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e","name":"CPI Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","caption":"CPI Staff"},"sameAs":["http:\/\/www.cloudproinc.com.au"],"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png","jetpack-related-posts":[{"id":53960,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/25\/langchain-architecture-explained\/","url_meta":{"origin":53836,"position":0},"title":"LangChain Architecture Explained","author":"CPI Staff","date":"September 25, 2025","format":false,"excerpt":"A practical tour of LangChain\u2019s building blocks\u2014models, prompts, chains, memory, tools, and RAG\u2014plus LCEL, tracing, and deployment tips for production AI apps.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/langchain-architecture-explained-for-agents-rag-and-production-apps.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/langchain-architecture-explained-for-agents-rag-and-production-apps.png 1x, \/wp-content\/uploads\/2025\/09\/langchain-architecture-explained-for-agents-rag-and-production-apps.png 1.5x, \/wp-content\/uploads\/2025\/09\/langchain-architecture-explained-for-agents-rag-and-production-apps.png 2x, \/wp-content\/uploads\/2025\/09\/langchain-architecture-explained-for-agents-rag-and-production-apps.png 3x, \/wp-content\/uploads\/2025\/09\/langchain-architecture-explained-for-agents-rag-and-production-apps.png 4x"},"classes":[]},{"id":53732,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/08\/28\/cypher-queries-and-rag-technology-explained\/","url_meta":{"origin":53836,"position":1},"title":"Cypher Queries and RAG Technology Explained","author":"CPI Staff","date":"August 28, 2025","format":false,"excerpt":"When it comes to making sense of complex data, especially in the era of AI, two concepts often come up together: Cypher queries and RAG technology. Cypher queries are the language behind graph databases like Neo4j, while RAG (Retrieval-Augmented Generation) is an approach used in modern AI systems to improve\u2026","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 1x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 1.5x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 2x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 3x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 4x"},"classes":[]},{"id":53956,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/25\/running-prompts-with-langchain\/","url_meta":{"origin":53836,"position":2},"title":"Running Prompts with LangChain","author":"CPI Staff","date":"September 25, 2025","format":false,"excerpt":"Learn how to design, run, and evaluate prompts with LangChain using modern patterns, from simple templates to retrieval and production-ready chains.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/running-prompts-with-langchain-a-practical-guide-for-teams-and-leaders.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/running-prompts-with-langchain-a-practical-guide-for-teams-and-leaders.png 1x, \/wp-content\/uploads\/2025\/09\/running-prompts-with-langchain-a-practical-guide-for-teams-and-leaders.png 1.5x, \/wp-content\/uploads\/2025\/09\/running-prompts-with-langchain-a-practical-guide-for-teams-and-leaders.png 2x, \/wp-content\/uploads\/2025\/09\/running-prompts-with-langchain-a-practical-guide-for-teams-and-leaders.png 3x, \/wp-content\/uploads\/2025\/09\/running-prompts-with-langchain-a-practical-guide-for-teams-and-leaders.png 4x"},"classes":[]},{"id":53838,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/15\/use-text2cypher-with-rag\/","url_meta":{"origin":53836,"position":3},"title":"Use Text2Cypher with RAG","author":"CPI Staff","date":"September 15, 2025","format":false,"excerpt":"Learn how to combine Text2Cypher and RAG to turn natural language into precise Cypher, execute safely, and deliver trustworthy graph answers.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 1x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 1.5x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 2x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 3x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 4x"},"classes":[]},{"id":53958,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/25\/document-definition-in-langchain\/","url_meta":{"origin":53836,"position":4},"title":"Document Definition in LangChain","author":"CPI Staff","date":"September 25, 2025","format":false,"excerpt":"Understand LangChain\u2019s Document model and how to structure, chunk, and enrich metadata to build accurate, scalable RAG pipelines.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/mastering-document-definition-in-langchain-for-reliable-rag.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/mastering-document-definition-in-langchain-for-reliable-rag.png 1x, \/wp-content\/uploads\/2025\/09\/mastering-document-definition-in-langchain-for-reliable-rag.png 1.5x, \/wp-content\/uploads\/2025\/09\/mastering-document-definition-in-langchain-for-reliable-rag.png 2x, \/wp-content\/uploads\/2025\/09\/mastering-document-definition-in-langchain-for-reliable-rag.png 3x, \/wp-content\/uploads\/2025\/09\/mastering-document-definition-in-langchain-for-reliable-rag.png 4x"},"classes":[]},{"id":53910,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/21\/build-a-chat-bot-with-streamlit\/","url_meta":{"origin":53836,"position":5},"title":"Build a Chat Bot with Streamlit","author":"CPI Staff","date":"September 21, 2025","format":false,"excerpt":"A practical, friendly guide to designing, building, and shipping a Streamlit chat bot with modern LLMs, retrieval, and secure deployment for teams.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/build-a-chat-bot-with-streamlit-an-end-to-end-guide-for-teams.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/build-a-chat-bot-with-streamlit-an-end-to-end-guide-for-teams.png 1x, \/wp-content\/uploads\/2025\/09\/build-a-chat-bot-with-streamlit-an-end-to-end-guide-for-teams.png 1.5x, \/wp-content\/uploads\/2025\/09\/build-a-chat-bot-with-streamlit-an-end-to-end-guide-for-teams.png 2x, \/wp-content\/uploads\/2025\/09\/build-a-chat-bot-with-streamlit-an-end-to-end-guide-for-teams.png 3x, \/wp-content\/uploads\/2025\/09\/build-a-chat-bot-with-streamlit-an-end-to-end-guide-for-teams.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/53836","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/comments?post=53836"}],"version-history":[{"count":2,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/53836\/revisions"}],"predecessor-version":[{"id":53858,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/53836\/revisions\/53858"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media\/53843"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media?parent=53836"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/categories?post=53836"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/tags?post=53836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}