{"id":117990,"date":"2026-06-29T21:28:44","date_gmt":"2026-06-29T15:58:44","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=117990"},"modified":"2026-06-29T21:28:46","modified_gmt":"2026-06-29T15:58:46","slug":"building-a-rag-app-with-python-and-langchain","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/building-a-rag-app-with-python-and-langchain\/","title":{"rendered":"Building a RAG (Retrieval-Augmented Generation) App with Python &#038; LangChain"},"content":{"rendered":"\n<p>Large Language Models (LLMs) have transformed AI applications, but they can only generate responses from the data they were trained on. This often results in outdated or inaccurate answers.<\/p>\n\n\n\n<p><strong>A Python-built RAG<\/strong> <strong>application<\/strong> helps large language models retrieve relevant information before generating responses, improving accuracy and reducing hallucinations. Python and LangChain simplify the development of these retrieval-augmented AI systems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR Summary<\/strong><\/h2>\n\n\n\n<ol>\n<li>Retrieval-Augmented Generation (RAG) combines document retrieval and large language models to generate more accurate responses.<\/li>\n\n\n\n<li>Python and LangChain make it easier to build RAG-powered AI applications.<\/li>\n\n\n\n<li>Vector databases help retrieve relevant information before generating an answer.<\/li>\n\n\n\n<li>RAG reduces hallucinations by grounding responses in trusted data sources.<\/li>\n\n\n\n<li>Learning RAG builds a strong foundation for Generative AI, <a href=\"https:\/\/www.guvi.in\/blog\/guide-to-large-language-models\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/guide-to-large-language-models\/\" rel=\"noreferrer noopener\">LLM <\/a>applications, and intelligent search systems.<\/li>\n\n\n\n<li><\/li>\n<\/ol>\n\n\n\n<p>For learners interested in exploring advanced Generative AI concepts beyond this project, <strong>HCL GUVI&#8217;s <\/strong><a href=\"https:\/\/www.guvi.in\/courses\/english\/bundles\/artificial-intelligence-machine-learning\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Building+a+RAG+%28Retrieval-Augmented+Generation%29+App+with+Python+%26+LangChain\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>AI &amp; Machine Learning<\/strong><\/a><strong> Course<\/strong> provides hands-on experience with machine learning, large language models, retrieval systems, and real-world AI applications.<\/p>\n\n\n\n<figure class=\"wp-block-pullquote has-small-font-size\"><blockquote><p><strong><em>Data Point: According to McKinsey, Generative AI could add between $2.6 trillion and $4.4 trillion annually across industries, accelerating the adoption of AI systems powered by retrieval-based architectures.<\/em><\/strong><\/p><cite>Source: https:\/\/www.mckinsey.com\/capabilities\/quantumblack\/our-insights\/the-economic-potential-of-generative-ai-the-next-productivity-frontier<\/cite><\/blockquote><\/figure>\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 Retrieval-Augmented Generation (RAG)?\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      Retrieval-Augmented Generation (RAG) is an AI framework that combines information retrieval systems with large language models to produce more accurate and context-aware responses. Instead of relying only on pretrained knowledge, a RAG system first retrieves relevant documents from external data sources and then uses them as context for generating an answer. This approach significantly reduces hallucinations and improves factual accuracy. In practice, tools like Python and LangChain make it easier to build RAG-based applications by integrating document retrieval pipelines with generative AI models.\n    <\/p>\n\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is Retrieval-Augmented Generation (RAG)?<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/blog\/guide-for-retrieval-augmented-generation\/\" target=\"_blank\" rel=\"noreferrer noopener\">Retrieval-Augmented Generation (RAG)<\/a> is an AI architecture that enhances language models with external knowledge sources. Instead of relying entirely on pre-trained information, the system retrieves relevant documents and uses them as context before generating responses.<\/p>\n\n\n\n<p>Python is commonly used with <a href=\"https:\/\/www.guvi.in\/blog\/what-is-langchain-is-used-for\/\" target=\"_blank\" rel=\"noreferrer noopener\">LangChain<\/a> for RAG development because it simplifies document processing, retrieval pipelines, and language model integration. This combination makes it easier to build AI applications that can access up-to-date information and generate more accurate responses.\u00a0<\/p>\n\n\n\n<p>Want to learn how these components come together in a real-world project? Check out our guide on <a href=\"https:\/\/www.guvi.in\/blog\/build-a-language-model-application-with-langchain\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Build a Language Model Application with LangChain<\/a> to explore LangChain workflows, prompt orchestration, and LLM-powered application development.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Components of RAG<\/strong><\/h3>\n\n\n\n<ol>\n<li><strong>Document Retriever<\/strong> \u2013 Finds relevant information based on user queries.<\/li>\n\n\n\n<li><strong>Vector Database<\/strong> \u2013 Stores document embeddings for similarity search.<\/li>\n\n\n\n<li><strong>Large Language Model (LLM)<\/strong> \u2013 Generates responses using retrieved context.<\/li>\n<\/ol>\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  \n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong> \n  <br \/><br \/> \n  \n  Many enterprise AI assistants use <strong style=\"color: #FFFFFF;\">RAG (Retrieval-Augmented Generation)<\/strong> architectures because they can access updated company documents without retraining the underlying language model. This allows organizations to keep responses accurate, context-aware, and continuously up to date while reducing the cost and complexity of model retraining.\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Learn RAG with Python?<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/hub\/python\/what-is-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> and LangChain provide one of the easiest entry points into Generative AI development.<\/p>\n\n\n\n<p>You can build useful AI applications without training your own large language models while still learning industry-relevant skills that are increasingly in demand.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Benefit<\/strong><\/td><td><strong>Why It Matters<\/strong><\/td><\/tr><tr><td>Easy Syntax<\/td><td>Python simplifies AI development<\/td><\/tr><tr><td>LangChain Integration<\/td><td>Accelerates RAG application building<\/td><\/tr><tr><td>Reduced Hallucinations<\/td><td>Improves response accuracy<\/td><\/tr><tr><td>Enterprise Demand<\/td><td>Widely adopted across industries<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-pullquote has-small-font-size\"><blockquote><p><strong>Data Point<\/strong>: According to LangChain documentation, retrieval systems help improve response quality by providing external context to language models during generation.<\/p><cite><strong><a href=\"https:\/\/python.langchain.com\/docs\/concepts\/rag\/\" data-type=\"link\" data-id=\"https:\/\/python.langchain.com\/docs\/concepts\/rag\/\" target=\"_blank\" rel=\"noopener\">Sour<\/a><a href=\"https:\/\/python.langchain.com\/docs\/concepts\/rag\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/python.langchain.com\/docs\/concepts\/rag\/\" rel=\"noreferrer noopener nofollow\">c<\/a><a href=\"https:\/\/python.langchain.com\/docs\/concepts\/rag\/\" data-type=\"link\" data-id=\"https:\/\/python.langchain.com\/docs\/concepts\/rag\/\" target=\"_blank\" rel=\"noopener\">e<\/a><\/strong><\/cite><\/blockquote><\/figure>\n\n\n\n<p>If you&#8217;re new to Python, <strong>HCL GUVI&#8217;s Python <\/strong><a href=\"https:\/\/www.guvi.in\/mlp\/python-ebook\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Building+a+RAG+%28Retrieval-Augmented+Generation%29+App+with+Python+%26+LangChain\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>eBook<\/strong><\/a> can help you strengthen the fundamentals needed to build RAG and Generative AI projects with confidence.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Building a RAG Application in 30 Minutes<\/strong><\/h2>\n\n\n\n<p>Let&#8217;s build a simple <a href=\"https:\/\/www.guvi.in\/blog\/rag-app-tutorial\/\" target=\"_blank\" rel=\"noreferrer noopener\">RAG application<\/a>.<\/p>\n\n\n\n<p>A basic RAG system loads documents, converts them into vector embeddings, stores them in a vector database, retrieves relevant information, and generates responses using the retrieved context. This workflow demonstrates the core stages of many modern AI assistants and intelligent search systems.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Install Required Libraries<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>pip install langchain\n\npip install langchain-community\n\npip install langchain-huggingface\n\npip install faiss-cpu\n\npip install sentence-transformers\n\nVerify installation:\n\nimport langchain\n\nprint(\"LangChain Installed Successfully\")<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Build the RAG Application<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>from langchain_community.document_loaders import TextLoader\n\nfrom langchain_huggingface import HuggingFaceEmbeddings\n\nfrom langchain_community.vectorstores import FAISS\n\nloader = TextLoader(\"knowledge_base.txt\")\n\ndocuments = loader.load()\n\nembeddings = HuggingFaceEmbeddings()\n\nvector_store = FAISS.from_documents(\n\n&nbsp;&nbsp;&nbsp;&nbsp;documents,\n\n&nbsp;&nbsp;&nbsp;&nbsp;embeddings\n\n)\n\nretriever = vector_store.as_retriever()\n\nquery = \"What is Retrieval-Augmented Generation?\"\n\nresults = retriever.get_relevant_documents(query)\n\nfor doc in results:\n\n&nbsp;&nbsp;&nbsp;&nbsp;print(doc.page_content)<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading has-text-align-center\"><strong>\u26a0\ufe0f Warning<\/strong><\/h5>\n\n\n\n<p class=\"has-text-align-center\"><em><strong>Use clean, well-structured documents when learning RAG development. Poor-quality data can reduce retrieval accuracy and affect response quality.<\/strong><\/em><\/p>\n\n\n\n<p>Once you&#8217;ve built a basic RAG application, the next step is exploring larger datasets and advanced retrieval strategies. Learning document chunking, hybrid search, and vector databases can help you understand how real-world AI assistants are built and optimized.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Does RAG Work?<\/strong><\/h2>\n\n\n\n<p>RAG retrieves relevant information before generating responses.<\/p>\n\n\n\n<p>Instead of answering immediately, the system first searches a knowledge base, identifies useful documents, and then provides that information to the language model as context.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Stages<\/strong><\/h3>\n\n\n\n<ol>\n<li><strong>Document Ingestion<\/strong> \u2013 Collect and prepare source documents.<\/li>\n\n\n\n<li><strong>Embedding Generation<\/strong> \u2013 Convert text into vector representations.<\/li>\n\n\n\n<li><strong>Similarity Search<\/strong> \u2013 Retrieve relevant content for a query.<\/li>\n\n\n\n<li><strong>Context Injection<\/strong> \u2013 Supply retrieved information to the LLM.<\/li>\n\n\n\n<li><strong>Response Generation<\/strong> \u2013 Generate a grounded and context-aware answer.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-pullquote has-small-font-size\"><blockquote><p><strong>Data Point<\/strong>: Meta&#8217;s RAG research demonstrated that retrieval-enhanced language models can improve performance on knowledge-intensive natural language processing tasks.<\/p><cite><a href=\"https:\/\/ai.meta.com\/research\/publications\/retrieval-augmented-generation-for-knowledge-intensive-nlp-tasks\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/ai.meta.com\/research\/publications\/retrieval-augmented-generation-for-knowledge-intensive-nlp-tasks\/\" rel=\"noreferrer noopener nofollow\">Source<\/a><\/cite><\/blockquote><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Real-World Applications of RAG<\/strong><\/h2>\n\n\n\n<p>RAG extends far beyond beginner projects.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customer Support<\/strong><\/h3>\n\n\n\n<p>Organizations use <a href=\"https:\/\/www.guvi.in\/blog\/rag-chatbot-with-huggingface-and-streamlit\/\" target=\"_blank\" rel=\"noreferrer noopener\">RAG-powered chatbots<\/a> to answer customer questions using support documentation, FAQs, and knowledge bases.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Enterprise Search<\/strong><\/h3>\n\n\n\n<p>Businesses use RAG systems to help employees quickly locate information from internal documents, policies, and databases.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Healthcare Research<\/strong><\/h3>\n\n\n\n<p>Healthcare professionals and researchers use retrieval-based AI systems to access relevant studies, reports, and medical information more efficiently.<\/p>\n\n\n\n<h5 class=\"wp-block-heading has-text-align-center\"><strong>Best Practice<\/strong><\/h5>\n\n\n\n<p class=\"has-text-align-center\"><strong>Keep your knowledge base organized from the beginning. Well-structured documents make RAG systems easier to maintain and improve as projects grow.<\/strong><\/p>\n\n\n\n<p>Mastering RAG is often the first step toward building advanced Generative AI and LLM-powered solutions. If you&#8217;d like to progress from beginner projects to industry-level AI applications, <strong>HCL GUVI&#8217;s <\/strong><a href=\"https:\/\/www.guvi.in\/courses\/english\/bundles\/artificial-intelligence-machine-learning\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Building+a+RAG+%28Retrieval-Augmented+Generation%29+App+with+Python+%26+LangChain\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>AI &amp; Machine Learning<\/strong><\/a><strong> Course<\/strong> offers structured learning, practical projects, and real-world use cases designed to help you develop job-ready AI skills.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h2>\n\n\n\n<ol>\n<li>RAG combines retrieval systems with large language models.<\/li>\n\n\n\n<li>Python makes RAG development accessible to beginners.<\/li>\n\n\n\n<li>Vector databases power efficient information retrieval.<\/li>\n\n\n\n<li>RAG helps improve response accuracy and reliability.<\/li>\n\n\n\n<li>Retrieval-based AI skills are increasingly valuable across industries.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What To Do Next<\/strong><\/h2>\n\n\n\n<p>After completing this tutorial, explore:<\/p>\n\n\n\n<ol>\n<li>Conversational RAG chatbots<\/li>\n\n\n\n<li>Hybrid search systems<\/li>\n\n\n\n<li>PDF question-answering applications<\/li>\n\n\n\n<li>Enterprise knowledge assistants<\/li>\n\n\n\n<li>Multi-document AI search systems<\/li>\n<\/ol>\n\n\n\n<p>Building practical projects will help strengthen your Generative AI skills and create portfolio-ready work.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>This <strong>RAG Application Python<\/strong> tutorial demonstrated how to build a simple Retrieval-Augmented Generation application using Python and LangChain. You learned how to load documents, create embeddings, retrieve relevant information, and understand the fundamentals of retrieval-based AI systems.<\/p>\n\n\n\n<p>As Generative AI adoption continues to grow across industries, RAG remains one of the most valuable techniques for building real-world AI applications. Strengthening your RAG skills through hands-on projects can help you explore opportunities in artificial intelligence, enterprise automation, intelligent search, and machine learning while building a strong foundation for advanced AI development.<\/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-1782100020382\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is RAG used for?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>RAG is used for AI assistants, enterprise search systems, customer support chatbots, document question answering, and knowledge management applications. It helps language models access external information before generating responses.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782100025253\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. Is RAG beginner-friendly?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Python and LangChain provide beginner-friendly tools for building RAG applications. Many developers start learning Generative AI by building simple retrieval-based projects.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782100033771\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. Do I need machine learning knowledge to build RAG applications?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. You can build basic RAG applications using Python and LangChain without deep machine learning expertise. However, machine learning knowledge becomes useful when working with advanced retrieval and optimization techniques.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782100044044\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Can RAG work with PDF documents?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. RAG systems can process PDFs, Word documents, websites, databases, and other knowledge sources. This flexibility makes them useful across multiple industries.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782100058843\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. What vector databases are used in RAG?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Popular vector databases include FAISS, Pinecone, Weaviate, Chroma, and Milvus. These databases store embeddings and support similarity-based retrieval.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782100068754\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>6. Is LangChain required for RAG development?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. However, LangChain simplifies many aspects of retrieval pipeline development, making it one of the most popular frameworks for building RAG applications.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782100077476\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>7. Is RAG still relevant in 2026?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. RAG remains one of the most widely adopted approaches for enterprise AI because it improves factual accuracy, supports the integration of external knowledge, and reduces the need to retrain large language models.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Large Language Models (LLMs) have transformed AI applications, but they can only generate responses from the data they were trained on. This often results in outdated or inaccurate answers. A Python-built RAG application helps large language models retrieve relevant information before generating responses, improving accuracy and reducing hallucinations. Python and LangChain simplify the development of [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":119622,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"75","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/06\/building-a-rag-app-with-python-and-langchain-300x150.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/117990"}],"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=117990"}],"version-history":[{"count":6,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/117990\/revisions"}],"predecessor-version":[{"id":119620,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/117990\/revisions\/119620"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/119622"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=117990"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=117990"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=117990"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}