{"id":113214,"date":"2026-06-01T22:29:36","date_gmt":"2026-06-01T16:59:36","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=113214"},"modified":"2026-06-01T22:29:38","modified_gmt":"2026-06-01T16:59:38","slug":"foundation-models-in-generative-ai","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/foundation-models-in-generative-ai\/","title":{"rendered":"Foundation Models in Generative AI: A Complete Guide"},"content":{"rendered":"\n<p>The rise of generative AI has introduced a new class of models that are transforming how machines understand and produce content. At the heart of this revolution are foundation models, large, general-purpose AI models trained on vast amounts of data that serve as the base for a wide range of applications.<\/p>\n\n\n\n<p>From answering questions and writing code to generating photorealistic images, foundation models have become the engine powering the most capable AI systems in the world today.<\/p>\n\n\n\n<p>But what exactly are foundation models? How do they work? And why have they become so central to modern AI development?<\/p>\n\n\n\n<p>This guide answers all of those questions, covering what foundation models are, how they are built, what makes them powerful, and where they are headed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>TL;DR<\/strong><\/h3>\n\n\n\n<ul>\n<li>Foundation models are pre-trained on large, diverse datasets and adapted for specific tasks through fine-tuning or prompting.<\/li>\n\n\n\n<li>Self-supervised learning allows training on unlabelled data at a massive scale without manual annotation.<\/li>\n\n\n\n<li>Transfer learning enables knowledge gained during pre-training to be applied efficiently to new tasks.<\/li>\n\n\n\n<li>Key examples include GPT and BERT for language, DALL-E for images, and multimodal models like GPT-4o.<\/li>\n\n\n\n<li>Fine-tuning and prompt engineering are the primary methods for adapting foundation models to specific use cases.<\/li>\n<\/ul>\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 Are Foundation Models in Generative 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      Foundation models are large-scale AI models trained on vast and diverse datasets using self-supervised learning techniques. They learn general patterns and representations across domains such as language, images, audio, and code, enabling them to perform a wide variety of tasks with minimal additional training. Once trained, foundation models can be fine-tuned or prompted for specific applications including text generation, summarization, translation, image creation, question answering, and code completion, making them the core building blocks of modern generative AI systems.\n    <\/p>\n\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Are Foundation Models?<\/strong><\/h2>\n\n\n\n<p>The term foundation model was introduced by researchers at the Stanford Institute for Human-Centred Artificial Intelligence (HAI) in 2021. It describes a class of <a href=\"https:\/\/www.guvi.in\/blog\/what-is-artificial-intelligence\/'\" target=\"_blank\" rel=\"noreferrer noopener\">AI <\/a>models trained on broad data at scale, which can be adapted with relatively little additional training to a remarkably wide range of tasks.<\/p>\n\n\n\n<p>Foundation models are defined by two core properties:<\/p>\n\n\n\n<p>\u2022&nbsp; &nbsp; <strong>Emergence: <\/strong>The ability to perform tasks they were not explicitly trained on, arising from scale and self-supervised learning.<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; <strong>Homogenisation: <\/strong>A single model architecture that can be adapted to many domains, replacing the need for separate specialist models for each task.<\/p>\n\n\n\n<p>Before foundation models, building an effective AI system typically required training a separate model for each specific task, one for translation, one for sentiment analysis, and another for image classification. Foundation models changed that paradigm entirely.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Foundation Models Are Built<\/strong><\/h2>\n\n\n\n<p>Building a foundation model involves three key stages: data collection, pre-training, and adaptation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Stage 1: Data Collection at Scale<\/strong><\/h3>\n\n\n\n<p>Foundation models require enormous volumes of training data. Large language models <a href=\"https:\/\/www.guvi.in\/blog\/guide-to-large-language-models\/\" target=\"_blank\" rel=\"noreferrer noopener\">(LLM<\/a>s) like GPT are trained on hundreds of billions of tokens drawn from:<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; Web pages and crawled internet data<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; Books and academic publications<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; Code repositories such as GitHub<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; News articles and encyclopaedias<\/p>\n\n\n\n<p>Image-based models like DALL-E are trained on hundreds of millions of image-text pairs. The breadth and diversity of this data is what enables generalisation, the ability to handle novel tasks not seen during training.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Stage 2: Self-Supervised Pre-Training<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/blog\/self-supervised-learning-explained\/\" target=\"_blank\" rel=\"noreferrer noopener\">Self-supervised learning<\/a> is the training paradigm that makes foundation models possible at scale. Unlike supervised learning, it requires no manually labelled data. Instead, labels are derived automatically from the structure of the data itself.<\/p>\n\n\n\n<p>For language models, common self-supervised objectives include:<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; <strong>Next-token prediction (causal LM): <\/strong>Predict the next word given all previous words. This is how GPT-series models are trained.<\/p>\n\n\n\n<p>\u2022&nbsp; &nbsp; <strong>Masked language modelling (MLM): <\/strong>Randomly mask words in a sentence and predict the masked tokens. This is how BERT is trained.<\/p>\n\n\n\n<p>For image models, objectives include predicting masked image patches or learning joint image-text embeddings (as in CLIP). Self-supervised pre-training on massive datasets gives the model a rich, general representation of the world.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Stage 3: Fine-Tuning and Adaptation<\/strong><\/h3>\n\n\n\n<p>Once pre-trained, a foundation model is a general-purpose base. <a href=\"https:\/\/www.databricks.com\/blog\/llm-fine-tuning\" target=\"_blank\" rel=\"noreferrer noopener\">Fine-tuning <\/a>adapts this base to a specific task using a smaller, labelled dataset. Because the model has already learned rich representations from pre-training, fine-tuning requires far less data and compute than training from scratch. This is the core principle of transfer learning.<\/p>\n\n\n\n<p>Modern adaptation methods include:<\/p>\n\n\n\n<ul>\n<li><strong>Full fine-tuning: <\/strong>Update all model weights on task-specific data.<\/li>\n\n\n\n<li><strong>Parameter-efficient fine-tuning (PEFT): <\/strong>Update only a small subset of parameters (e.g., LoRA, adapters) to reduce compute cost.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.guvi.in\/blog\/what-is-prompt-engineering\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Prompt engineering<\/strong><\/a><strong>: <\/strong>Guide the model&#8217;s behaviour at inference time without updating any weights, by crafting effective input prompts.<\/li>\n\n\n\n<li><strong>Reinforcement learning from human feedback (RLHF): <\/strong>Fine-tune the model using human preference data to improve helpfulness, safety, and accuracy \u2014 the method used to create ChatGPT and Claude.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>AI Model Architecture: The Transformer<\/strong><\/h2>\n\n\n\n<p>Almost all modern foundation models are built on the Transformer architecture, introduced by Vaswani et al. in the landmark 2017 paper &#8220;Attention Is All You Need&#8221;.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Self-Attention Mechanism<\/strong><\/h3>\n\n\n\n<p>The key innovation of the Transformer is self-attention: the ability of each token in a sequence to attend to every other token, regardless of distance. This allows the model to capture long-range dependencies that earlier architectures like RNNs and LSTMs struggled with.<\/p>\n\n\n\n<p>Self-attention computes three vectors for each token: Query (Q), Key (K), and Value (V) and uses them to weight how much each token should attend to every other token. This is done in parallel across the entire sequence, making Transformers significantly faster to train than sequential architectures.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Encoder vs. Decoder vs. Encoder-Decoder<\/strong><\/h3>\n\n\n\n<p>Foundation models differ in which part of the Transformer architecture they use:<\/p>\n\n\n\n<ul>\n<li><strong>Encoder-only (e.g., BERT): <\/strong>Processes the entire input sequence bidirectionally. Best for understanding tasks like classification, sentiment analysis, and named entity recognition.<\/li>\n\n\n\n<li><strong>Decoder-only (e.g., GPT): <\/strong>Processes tokens left to right using masked self-attention. Best for generative tasks like text completion, dialogue, and code generation.<\/li>\n\n\n\n<li><strong>Encoder-decoder (e.g., T5, BART): <\/strong>Uses both components. The encoder processes the input; the decoder generates the output. Best for sequence-to-sequence tasks like translation and summarisation.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key Foundation Models: GPT, BERT, and DALL-E<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>GPT (Generative Pre-trained Transformer)<\/strong><\/h3>\n\n\n\n<p>Developed by OpenAI, GPT is a decoder-only large language model trained on next-token prediction. The GPT series from GPT-1 (2018) to GPT-4 (2023) demonstrated that scaling model size and training data reliably improve capability.<\/p>\n\n\n\n<p>GPT models are the backbone of ChatGPT and power a wide range of generative AI applications, from writing assistance and code generation to customer support and document summarisation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>BERT (Bidirectional Encoder Representations from Transformers)<\/strong><\/h3>\n\n\n\n<p>Developed by Google, BERT is an encoder-only model trained using masked language modelling. Unlike GPT, BERT processes text bidirectionally, considering context from both left and right simultaneously, making it particularly effective for understanding tasks.<\/p>\n\n\n\n<p>BERT and its variants (RoBERTa, DistilBERT, ALBERT) have become the standard pre-trained models for natural language understanding (NLU) tasks, including:<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; Question answering<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; Sentence classification and sentiment analysis<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; Named entity recognition (NER)<\/p>\n\n\n\n<p>\u2022 &nbsp; &nbsp; &nbsp; Semantic similarity and search<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>DALL-E (Image Generation)<\/strong><\/h3>\n\n\n\n<p>Developed by OpenAI, DALL-E is a multimodal foundation model that generates images from natural language text prompts. Trained on large image-text pairs, it learns a joint representation of visual and linguistic information.<\/p>\n\n\n\n<p>DALL-E and similar models,s including Stable Diffusion and Midjourney, represent the extension of the foundation model paradigm into the visual domain, enabling generative AI for creative applications, product design, and visual content creation.<\/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;\">GPT-3<\/strong>, released by <strong style=\"color: #FFFFFF;\">OpenAI<\/strong> in <strong style=\"color: #FFFFFF;\">2020<\/strong>, was one of the largest language models ever built at the time, containing <strong style=\"color: #FFFFFF;\">175 billion parameters<\/strong> and trained on hundreds of billions of words drawn from diverse internet-scale text sources. What made GPT-3 especially significant was its unexpected ability to perform <strong style=\"color: #FFFFFF;\">zero-shot<\/strong> and <strong style=\"color: #FFFFFF;\">few-shot learning<\/strong>, solving a wide variety of tasks from only instructions or a handful of examples in the prompt. These capabilities demonstrated that simply scaling model size, training data, and compute could produce powerful <strong style=\"color: #FFFFFF;\">emergent behaviors<\/strong> that were not explicitly programmed, fundamentally influencing the direction of modern AI research and large language model development.\n  <\/p>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Transfer Learning: The Power Behind Foundation Models<\/strong><\/h2>\n\n\n\n<p>Transfer learning is the concept that knowledge acquired during training on one task can be transferred and applied to accelerate learning on a different task. It is the foundational principle that makes foundation models practical and economical.<\/p>\n\n\n\n<p>Without transfer learning, every application would require training a large model from scratch, a process that can cost millions of dollars in compute. With transfer learning:<\/p>\n\n\n\n<ul>\n<li>Pre-training is done once, on general data, at a massive scale.<\/li>\n\n\n\n<li>Fine-tuning is done many times, on task-specific data, cheaply and quickly.<\/li>\n\n\n\n<li>Organisations without the resources to train large models can still benefit by fine-tuning existing pre-trained models.<\/li>\n<\/ul>\n\n\n\n<p>This is why models like BERT and GPT, once released, were adopted so rapidly across industry and research; they brought state-of-the-art AI capabilities within reach of teams that could not afford to train them from scratch.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Multimodal Foundation Models<\/strong><\/h2>\n\n\n\n<p>Early foundation models were unimodal, trained on a single data type, such as text or images. The next generation of foundation models is multimodal, processing and generating across multiple data types within a single model.<\/p>\n\n\n\n<p>Key multimodal foundation models include:<\/p>\n\n\n\n<ul>\n<li><strong>GPT-4o (OpenAI): <\/strong>Processes text, images, and audio in a single model, enabling native cross-modal reasoning.<\/li>\n\n\n\n<li><strong>Gemini (Google DeepMind): <\/strong>Built as a multimodal model from the ground up, capable of reasoning over text, images, video, and code.<\/li>\n\n\n\n<li><strong>Claude (Anthropic): <\/strong>A large language model with vision capabilities, designed for safety and helpfulness.<\/li>\n\n\n\n<li><strong>CLIP (OpenAI): <\/strong>Learns joint text-image representations, enabling zero-shot image classification and powering image search.<\/li>\n<\/ul>\n\n\n\n<p>Multimodal foundation models represent the frontier of the field, enabling applications that require reasoning across text, vision, and audio, such as medical image analysis, video understanding, and embodied AI.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Fine-Tuning Foundation Models for Specific Tasks<\/strong><\/h2>\n\n\n\n<p>Fine-tuning is the process of further training a pre-trained foundation model on a specific dataset to improve its performance on a target task. It is what transforms a general-purpose base model into a highly capable specialist.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>When to Fine-Tune<\/strong><\/h3>\n\n\n\n<p>Fine-tuning is appropriate when:<\/p>\n\n\n\n<ul>\n<li>The task has a specific domain (medical, legal, financial) with specialised vocabulary and conventions.<\/li>\n\n\n\n<li>A particular output format or behaviour is required consistently.<\/li>\n\n\n\n<li>Performance on specific benchmarks needs to be maximised beyond what prompt engineering can achieve.<\/li>\n\n\n\n<li>Privacy or regulatory requirements prevent sending sensitive data to a general-purpose API.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Fine-Tuning vs. Prompt Engineering<\/strong><\/h3>\n\n\n\n<p>Not every use case requires fine-tuning. Prompt engineering, crafting the input to guide the model&#8217;s output, can achieve strong results for many tasks without modifying any model weights.<\/p>\n\n\n\n<p>The choice between fine-tuning and prompt engineering depends on the performance requirements, the availability of labelled training data, and the application&#8217;s cost constraints.<\/p>\n\n\n\n<p>If you want practical experience working with activation functions, neural networks, and deep learning models, <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=Foundation+Models+in+Generative+AI%3A+A+Complete+Guide\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>AI and ML programs<\/strong><\/a> can help you understand how concepts like sigmoid, backpropagation, and gradient descent are implemented using frameworks such as TensorFlow and PyTorch through hands-on projects.\u00a0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Foundation models represent one of the most significant shifts in the history of artificial intelligence. By training large models on broad data and adapting them through transfer learning and fine-tuning, the field has moved from narrow, task-specific systems to general-purpose AI capable of performing and sometimes exceeding human performance across a remarkable range of tasks.<\/p>\n\n\n\n<p>From GPT and BERT for language understanding to DALL-E for image generation and multimodal models like GPT-4o and Gemini, foundation models have become the infrastructure of modern generative AI. They are the base upon which applications in healthcare, law, finance, creative industries, and software engineering are now being built.<\/p>\n\n\n\n<p>Understanding foundation models, how they are trained, why self-supervised learning matters, how transfer learning works, and how fine-tuning adapts them is essential for anyone working in or alongside artificial intelligence today.<\/p>\n\n\n\n<p>The foundation model era is not a passing trend. It is the architecture of AI for the foreseeable future.<\/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-1780249526326\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is a foundation model in generative AI?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A foundation model is a large AI model pre-trained on broad, diverse data using self-supervised learning. It serves as a general-purpose base that can be fine-tuned or prompted to perform many downstream tasks such as text generation, summarisation, or image synthesis \u2014 without being retrained from scratch.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780249539413\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. How are foundation models different from traditional AI models?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Traditional AI models are trained from scratch for a single specific task and require large labelled datasets for each application. Foundation models are trained once on general data and adapted for many tasks via fine-tuning or prompting, making them far more efficient and versatile.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780249565033\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. What is self-supervised learning in foundation models?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Self-supervised learning trains models on unlabelled data by generating labels automatically from the data&#8217;s structure, such as predicting the next word in a sentence or reconstructing a masked image patch. This enables training on internet-scale data without costly manual annotation.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780249575375\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. What is the difference between GPT and BERT?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>GPT is a decoder-only model trained with next-token prediction, making it ideal for text generation. BERT is an encoder-only model trained with masked language modelling, making it better suited for understanding tasks like classification and question answering.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780249601431\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. What does fine-tuning a foundation model mean?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Fine-tuning means further training a pre-trained foundation model on a smaller, task-specific labelled dataset. It updates the model&#8217;s weights to improve performance on a specific domain or task while retaining the general knowledge learned during pre-training.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>The rise of generative AI has introduced a new class of models that are transforming how machines understand and produce content. At the heart of this revolution are foundation models, large, general-purpose AI models trained on vast amounts of data that serve as the base for a wide range of applications. From answering questions and [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":113721,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[933],"tags":[],"views":"24","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/06\/foundation-models-in-generative-ai-300x116.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/06\/foundation-models-in-generative-ai.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113214"}],"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=113214"}],"version-history":[{"count":3,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113214\/revisions"}],"predecessor-version":[{"id":113717,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113214\/revisions\/113717"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/113721"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=113214"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=113214"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=113214"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}