You have probably used ChatGPT, Copilot, or Gemini by now — maybe to draft an email, explain a bug, or summarise a document. But do you know what is actually happening when you type a message and the AI responds?
This module explains what Generative AI is, how Large Language Models work, and why this matters for your career in Indian IT — all without a single equation.
Let us start with the two words separately.
AI (Artificial Intelligence) is a broad term for software that can perform tasks that normally require human thinking — recognising images, translating languages, making decisions.
Generative means it creates new content. Earlier AI systems were mostly discriminative — they classified or predicted things. A spam filter decides: is this email spam or not spam? A recommendation engine decides: which movie should I suggest?
Generative AI is different. It produces something new — a paragraph of text, a line of code, an image, a piece of music — that did not exist before.
The most powerful form of Generative AI today is built on Large Language Models (LLMs).
An LLM is a type of AI trained on an enormous amount of text — books, websites, research papers, code repositories, forum posts, and more. The training data for GPT-3 is estimated to include over 300 billion words.
During training, the model learns one thing at a deep level:
That sounds simple. But when you do this billions of times, across hundreds of billions of examples, the model ends up learning something profound — it learns the patterns of human knowledge itself.
It learns that after “The capital of India is”, the word “New” followed by “Delhi” is overwhelmingly likely. It learns that after def calculate_tax(income):, a line of Python code is expected, not a recipe. It learns the tone of a formal email versus a WhatsApp message.
None of this was explicitly programmed. It emerged from pattern learning at massive scale.
GPT-3 — the model behind early ChatGPT — has 175 billion parameters. Each parameter is a numerical value tuned during training to capture patterns in language. Think of each parameter as a tiny dial. Training adjusts all 175 billion dials simultaneously — billions of times — until the model becomes very good at predicting what comes next.
Why does size matter?
Larger models develop what researchers call emergent abilities — capabilities that smaller models simply do not have. The ability to reason through multi-step problems, write working code, explain complex concepts — these appeared at scale, not by design.
Importantly, the industry has also learned that efficiency matters as much as size. More recent models are not necessarily bigger — they are smarter about how they use their parameters. The exact architecture of GPT-4, Claude, and Gemini is not publicly disclosed, but the trend is clear: better results with leaner, more efficient designs.
When you type a message, the model does not “think” the way you do. It runs through the same five mechanical steps — hundreds of times — to build your response one word at a time.
Step 1 — Tokenisation: Your text is broken into tokens (chunks of text — roughly words or parts of words). “Generative AI” becomes two tokens. “Chandrashaker” might become three or four.
Step 2 — Context window: The model reads all the tokens in your conversation as one long sequence. Modern models like GPT-4 support up to 128,000 tokens — enough for a full novel.
Step 3 — Probability calculation: For every possible next token (~50,000 options), the model assigns a probability score.
Step 4 — Sampling: Rather than always picking the top-probability token (which would feel robotic and repetitive), the model samples from the top options — introducing natural variation. This is why the same question asked twice gives slightly different answers.
Step 5 — Repeat: Steps 3 and 4 repeat for every token in the response until the model decides to stop. A 200-word reply involves hundreds of these cycles.
This is why responses stream word by word — the model is generating your reply one token at a time, in real time.
Three misconceptions cause the most problems — either leading to over-trust or unnecessary dismissal of AI tools.
It does not search the internet by default. An LLM answers from what it learned during training, not from a live search. This is why it can hallucinate — confidently state something false. Always verify important factual claims independently.
Exception: ChatGPT with browsing enabled, Perplexity, and Gemini with live search can fetch real-time information. But the base model cannot.
It does not understand in the human sense. The model does sophisticated pattern matching. This matters less than you might think in practice — outputs are often indistinguishable from genuine understanding — but it explains why AI can fail in surprising ways on genuinely novel problems.
It has no memory between conversations. Each new chat starts fresh. Within a conversation it remembers everything (the context window). Close the tab — it is back to zero.
AI/ML hiring on Naukri grew 45% across FY26 — the fastest-growing job category in Indian tech, while overall IT hiring remained flat. Naukri currently lists over 77,000 active AI job vacancies, and that number keeps climbing.
But here is what many people miss — the majority of those roles are not asking for people to build AI. They are asking for people who can work with AI effectively.
Infosys alone is running over 4,600 active AI projects, has generated over 28 million lines of code using AI tools, and built more than 500 AI agents — deployed with 90% of its 200 largest clients. TCS, Wipro, and HCL are following the same path.
Developers who can write effective prompts, use AI coding tools, and understand what AI can and cannot do are being fast-tracked. Those who cannot are being left behind — regardless of years of experience.
No technical work required — this is a reflection exercise.
There are no wrong answers. The goal is awareness — knowing what AI tools are already in your environment is the first step to using them strategically.
| Visual | Type | Licence | Attribution |
|---|---|---|---|
| Discriminative vs Generative | Inline SVG — original | CC0 | No |
| LLM next-token prediction | Inline SVG — original | CC0 | No |
| LLM scale timeline | Inline SVG — original | CC0 | No |
| 5-step conversation flow | Inline SVG — original | CC0 | No |
| Misconceptions panel | Inline SVG — original | CC0 | No |
| India hiring chart | Inline Chart.js — original | CC0 (Naukri data) | Cite Naukri as data source |