Home/Blog/Claude Mythos just dropped. But what's an LLM, anyway? — The 10-minute guide every Punjab student should read.
AI & Career

Claude Mythos just dropped. But what's an LLM, anyway? — The 10-minute guide every Punjab student should read.

MITS Faculty May 16, 2026 10 min read

You probably saw it in your WhatsApp groups or X feed this week — Claude Mythos is the latest model everyone's hyping. Last month it was a new GPT update. Before that, Gemini. Before that, a Llama release. The AI news cycle has gotten so fast that even tech people can't keep up.

Open any classroom in Amritsar, Jalandhar, or Mohali and you'll see the same thing. A student typing into ChatGPT to draft an assignment. Another pasting code into Claude to find a bug. Someone else asking Gemini to summarise a textbook chapter.

It's 2026 and AI is now part of student life — completely normal, like Google Search was in 2010.

But here's the funny part. Ask any of these students: *"What's an LLM? How does Claude / ChatGPT actually work?"*

Mostly blank stares. Or: "It's AI, na sir? It just knows things."

It doesn't "just know things". And if you understand even roughly how it works, you'll use it 10x better — plus you'll have a serious advantage over the 99% of students who treat it as magic.

Students using AI tools in everyday college life
Students using AI tools in everyday college life

First — what even is an "LLM"?

LLM stands for Large Language Model.

Forget the acronym for a second. Here's the simple version:

An LLM is a program that has read a huge chunk of the internet — books, articles, code, conversations — and learned to predict the next word in a sentence really, really well.

That's it. That's the entire trick.

When you type *"The Golden Temple is located in"* into ChatGPT, it doesn't "know" the answer. It predicts the most likely next word. Which is "Amritsar." Then it predicts the next word after that. Then the next. Until it has formed a full sentence.

It's just a really, really good autocomplete.

The "really good" part is what made it the biggest tech breakthrough since the smartphone.

How does it actually predict words?

You don't need to understand the math. You need to understand the idea.

Imagine you ate every Wikipedia article, every book in the Amritsar district library, every Stack Overflow answer, every Reddit post. Now I ask you to fill in the blank:

"Sachin Tendulkar is widely considered the greatest ___ player of all time."

You'd say "cricket" instantly. Not because you "looked it up" — because you've seen that pattern a million times in your reading.

An LLM does the same thing — but with a vocabulary of trillions of word patterns and a memory of about 10 trillion words it has read during "training."

Neural network visualization — billions of connections trained on internet text
Neural network visualization — billions of connections trained on internet text

The mechanism that does this magic is called a transformer — invented by Google researchers in 2017. Every major LLM since then — ChatGPT, Claude (including the new Mythos), Gemini, Llama, Mistral — is a transformer at its core. (If you want to understand transformers in depth, check our [AI Prompt Engineering career guide](/blog/ai-prompt-engineering-career-2026) — it covers the practical side.)

Three things that make LLMs feel "smart"

1. Scale (Big = Better)

A small LLM has a few hundred million parameters. A modern one has hundreds of billions. The bigger they get, the more patterns they capture — and the smarter they appear.

The newest models also have massive context windows — meaning they can read a whole book (some up to 1 million words in one go) and answer questions about it without "forgetting" the start.

2. Training on Human Feedback (RLHF)

Raw LLMs are like a chatty drunk uncle — they know a lot but say weird things. So researchers fine-tune them by having humans rate the responses. *"Good response. Bad response. Don't say that."*

This is why ChatGPT in 2026 is 10x more useful than the early versions in 2022. Same underlying tech — better human feedback.

3. Tools + Browsing + Code Execution

Modern LLMs aren't just text predictors anymore. They can: - Browse the web in real time - Run Python code to do math - Read PDFs you upload - Look at images you share - Use APIs to do real-world tasks (book flights, send emails, write code into your repo)

The combination of "smart autocomplete + tools" is what's making AI feel genuinely useful in 2026.

OK, but what does this have to do with MY career?

Everything. Here's the brutal truth.

In 2026, "I know how to use ChatGPT" is the same as "I know how to use Google" was in 2010. Useful, but not special. Everyone can do that.

What separates a ₹4 LPA fresher from a ₹9 LPA fresher right now is the next level:

LevelWhat they knowSalary band
**User**Asks ChatGPT for assignment helpSame salary as everyone — no edge
**Power User**Prompts well, uses tools, gets 5x outputUseful for any job — small edge
**Builder**Builds apps that USE LLMs via APIs₹6-12 LPA fresher roles
**Engineer**Trains, fine-tunes, deploys their own LLMs₹10-25 LPA fresher roles

The fresher job market in Punjab has tilted heavily toward Levels 3 and 4. Companies hiring in Mohali — even mid-size ones — want developers who can build "AI-augmented" apps. Not just write CRUD code. We've covered the actual salary breakdown in our [AI/ML Engineer Salary in India 2026](/blog/ai-ml-engineer-salary-india-2026) post — worth reading after this one.

The good news: getting to Level 3 is way easier than people think. You don't need a PhD. You need 4-6 months of focused learning.

The Roadmap — From "User" to "AI Engineer"

Here's the path we recommend at MITS Academy for students who want to actually build with AI:

Step-by-step learning roadmap for AI/LLM career
Step-by-step learning roadmap for AI/LLM career

Phase 1: Python Fundamentals (1 month)

Every AI/LLM tool is built in Python. You must be comfortable with: - Variables, loops, functions, classes - Lists, dictionaries, file handling - Working with APIs and JSON - Async / await basics

→ Our [Python course](/courses/python) covers this in 4-6 weeks. (Confused about whether to learn Python or Java first? Read our [Java vs Python comparison](/blog/java-vs-python-which-to-learn-first).)

Phase 2: Working with LLM APIs (2-3 weeks)

You don't train your own LLM. You use one via an API. Learn: - OpenAI / Anthropic / Google Gemini APIs - Prompt engineering (writing prompts that consistently work) - Chat history management - Token cost calculation

This is the part where you stop being a user and become a builder.

Phase 3: Build Real Apps (1.5-2 months)

Make 3-4 projects using LLM APIs: - A WhatsApp bot that answers FAQs for a local business - A resume reviewer that takes a PDF and gives feedback - A study companion that explains chapters from your textbook - A customer support agent for an e-commerce store

Each project teaches a real skill: file handling, conversation memory, tool use, deployment.

Phase 4: RAG + Vector Databases (1 month)

The next-level skill that almost no fresher in Punjab has: Retrieval Augmented Generation.

In simple terms: how to make an LLM answer questions using YOUR specific data (a company's documents, a school's syllabus, your medical records) — not just what it learned during training.

Learn: chunking, embeddings, vector databases (Pinecone, ChromaDB, Weaviate), and frameworks like LangChain / LlamaIndex.

This single skill is what gets you from ₹4 LPA to ₹8+ LPA roles. (For more on the kinds of companies hiring at these salaries, see our list of [top IT companies hiring freshers in Punjab & Chandigarh](/blog/top-it-companies-hiring-freshers-punjab-chandigarh-2026).)

Phase 5: Fine-tuning + Open Source LLMs (optional, advanced)

For students wanting to go really deep: - Run open-source LLMs (Llama, Mistral) on your own laptop or cloud - Fine-tune them on specific data - Build cost-efficient AI products

This phase is what AI Engineers at top startups do. ₹10-25 LPA territory at fresher level.

What you should NOT do

A few common mistakes we see:

"I'll just take an online AI course on Udemy." Most of them teach theory without building. After 30 hours of videos, students have zero portfolio. You learn by building, not watching.

"I'll skip Python, AI is just typing prompts." This is the Level 1 trap. You'll plateau at ₹3 LPA roles forever. Real AI jobs require code.

"I'll wait for AI to mature before learning it." 2026 IS the maturation. Companies are hiring NOW. The freshers who started learning in 2024 have a 2-year head start. We covered this in detail in our piece on [why TCS & Wipro are still hiring lakhs of freshers despite AI](/blog/ai-replacing-junior-developers-tcs-still-hiring-2026).

"I don't have a strong math background, AI isn't for me." For Levels 1-3, you need almost no math. Multiplication and basic logic is enough. Math matters only for Level 4+ (model training research).

How long until you're job-ready?

Honest estimate based on students we've placed:

  • 0 → Level 2 (Power User): 2-3 weeks of focused learning. Anyone can do this.
  • 0 → Level 3 (Builder): 4-6 months with a structured course. Most can do this.
  • 0 → Level 4 (Engineer): 9-12 months with serious dedication. Requires real interest in AI.

Most Punjab students don't need Level 4. Level 3 is where the salary jump happens. That's where we focus our [AI & Machine Learning course](/courses/aiml). For students who prefer the data-focused path, [Data Science](/courses/datascience) and [Data Analytics](/courses/dataanalytics) are great alternatives — same Python foundation, different career direction.

Free resources to start (do these this week)

Before you even think about a paid course, do these:

  • . Watch: Andrej Karpathy's "Intro to LLMs" on YouTube (1 hour, the single best free explainer)
  • . Read: Anthropic's free "Prompting 101" guide
  • . Build: A simple Python script that calls OpenAI / Claude API and chats with you
  • . Try: OpenAI Playground, Anthropic Console, Google AI Studio — free tiers for experimentation

If after 2 weeks you find this genuinely interesting — come talk to us about a structured path. If you find it boring — that's also useful information. AI is not for everyone, and that's okay.

What MITS Academy offers

Our [AI & Machine Learning course](/courses/aiml) covers Phases 1-4 of the roadmap above. 5-6 months. ISO certified. Real projects. 100% placement support — see our [Placements page](/placements) for the hiring partners and recent offer letters.

Students from our recent batches are placed at Tier-2 Mohali product firms, Chandigarh startups, and remote roles for US companies — at ₹5-9 LPA fresher salaries. Active placement openings are listed (for enrolled students) on our [Career portal](/career).

We're also adding a focused "LLM Engineering" track in our 2026 syllabus — covering RAG, agents, fine-tuning, and AI product development. This is for students who want to skip the basics and go straight to building AI products.

Curious about all our courses? Browse the full catalogue on our [Courses page](/courses) — including [MERN Stack](/courses/mern), [Cyber Security](/courses/cybersecurity), [Cloud Computing](/courses/cloud), and [Digital Marketing](/courses/digital-marketing) if AI isn't your direction.

What to do this week

If this guide made AI feel less scary:

  • . Tonight: Watch the Andrej Karpathy LLM explainer on YouTube (link search: "andrej karpathy intro LLMs")
  • . This weekend: Sign up for OpenAI or Anthropic free tier and try writing your first 10 prompts intentionally
  • . Next week: Visit MITS Academy for a free demo + counselling session — we'll show you live AI projects students are building. You can also browse our [free Resources](/resources) section for quizzes and weekly sessions to get a taste.
  • [Amritsar center](/amritsar): 2nd floor, SRK Mall, Mall Road — +91 90567 55115
  • [Jalandhar center](/jalandhar): 65, Garha Road, Choti Baradari — +91 76580 33310
  • Or book a callback through our [Contact page](/contact) — our counsellor will reach out within 30 minutes.

AI isn't going to take your job. A person who knows AI is going to take your job. The question is: are you going to be that person?

You've got two years before the next batch of college pass-outs floods the market. Two years is exactly enough time to go from "knows nothing about AI" to "earning ₹7+ LPA building AI products." Use them.

Free · No Commitment

Interested in Learning This?

Get a free demo class & career counselling — our expert will call you

Chat on WhatsApp

Select your nearest center

+91 90567 55115
Amritsar
+91 76580 33310
Jalandhar