Coding Now – Best AI & Full Stack Courses in Delhi NCR | 100% Placement
Limited Offer: Get 50% OFF on AI & Full Stack Courses
📞 Call Now: +91 9667708830
All Subjects
Free Learning Resource

🧬 Generative AI Notes

Learn LLMs, prompt engineering, embeddings, RAG, fine-tuning, tool calling and production AI development with practical examples and projects.

🧠

AI Fundamentals

What generative AI is, how it differs from AI/ML/DL, and how it works.

Beginner ~2.5 hrs
8 topics →
🤖

LLMs

How large language models are trained, run, and their real limitations.

Beginner–Intermediate ~3.5 hrs
13 topics →
🔤

Tokens

Tokenization and why it drives cost, context limits and latency.

Beginner ~1.5 hrs
8 topics →
🧩

Transformers

Attention, self-attention and the architecture behind modern LLMs.

Intermediate ~3 hrs
12 topics →
✍️

Prompt Engineering

Structuring prompts, few-shot patterns, chaining and prompt security.

Beginner–Intermediate ~4 hrs
19 topics →
🔌

LLM APIs

Chat completions, sampling parameters, streaming and provider-agnostic API design.

Intermediate ~2.5 hrs
13 topics →
🧾

Structured Output

Getting reliable JSON out of an LLM, and validating it.

Intermediate ~1.5 hrs
7 topics →
📐

Embeddings

Turning text into vectors, and measuring semantic similarity.

Intermediate ~2 hrs
9 topics →
🗄️

Vector Databases

Storing and searching embeddings at scale — indexes and hybrid search.

Intermediate ~2 hrs
9 topics →
📚

RAG

Retrieval-augmented generation — chunking, retrieval, and evaluating RAG systems.

Intermediate ~5 hrs
27 topics →
🎛️

Fine-tuning

When to fine-tune vs prompt vs RAG, and parameter-efficient methods like LoRA.

Advanced ~2.5 hrs
9 topics →
🖼️

Multimodal AI

Vision-language models, speech, image/video generation, and multimodal RAG.

Intermediate ~2 hrs
10 topics →
🛠️

Tool Calling

Letting an LLM call functions/APIs, and validating those calls safely.

Intermediate ~2 hrs
9 topics →
🧰

AI Frameworks

LangChain and LangGraph fundamentals for building LLM applications.

Intermediate ~2.5 hrs
Coming Soon
📊

Evaluation

Measuring faithfulness, relevance and correctness of LLM applications.

Advanced ~2 hrs
Coming Soon
🚀

Production AI

Observability, caching, cost/latency, and shipping reliable LLM applications.

Advanced ~2.5 hrs
Coming Soon
🔒

AI Security

Prompt injection, data leakage and defensive engineering for LLM apps.

Advanced ~1.5 hrs
Coming Soon
🎯

Interview Questions

Topic-wise Generative AI interview questions with explained answers.

All levels ~3 hrs
Coming Soon
📝

Practice Questions

Implementation-oriented exercises across prompting, RAG and tool calling.

All levels ~3 hrs
Coming Soon
🏗️

Projects

End-to-end builds — chatbots, RAG systems, document assistants and more.

Intermediate–Advanced ~5 hrs
Coming Soon

No notes found. Try a different search term, or browse all Generative AI notes.

🧠 AI Fundamentals

8 of 8 topics published

🤖 LLMs

13 of 14 topics published

🔤 Tokens

8 of 9 topics published

🧩 Transformers

12 of 12 topics published

✍️ Prompt Engineering

19 of 20 topics published
501

Prompt Engineering – Complete Guide

What prompt engineering actually is, and the techniques covered in this section.

502

Prompt Structure

Separating instructions, context and task so the model parses intent clearly.

503

System Prompt

Setting persistent behavior and persona, and why it's not a security guarantee.

504

User Prompt

The per-turn request, and how applications construct it dynamically.

505

Context in Prompt

Supplying grounding information, and instructing the model to actually use it.

506

Zero-Shot Prompting

Asking for a task with no examples, and when it works well.

507

One-Shot Prompting

Using exactly one example to establish a consistent output pattern.

508

Few-Shot Prompting

Using multiple examples to lock in format and demonstrate variation.

509

Chain-of-Thought Prompting

Working through steps before a final answer to improve multi-step accuracy.

510

Reasoning Prompts

Self-consistency, sub-question decomposition, and verification patterns.

511

Role Prompting

Assigning a persona to shape tone and framing — and its real limits.

512

Task Decomposition (Prompting)

Breaking one large prompt into a sequence of smaller, testable ones.

513

Prompt Templates

Reusable, testable prompt structures instead of ad hoc prompt strings.

514

Prompt Chaining

Connecting multiple LLM calls in sequence, with real error-handling considerations.

515

Prompt Optimization

A systematic, testable process for improving prompt performance.

516

Prompt Evaluation

Building a test set and measuring prompt quality before shipping changes.

517

Prompt Injection

Direct vs indirect injection, and practical defense-in-depth strategies.

518

Prompt Security

The broader threat surface beyond injection — leakage and unsafe output use.

519

Prompt Engineering Best Practices

A practical checklist across structure, technique, evaluation, security and cost.

🔌 LLM APIs

13 of 13 topics published

🧾 Structured Output

7 of 7 topics published

📐 Embeddings

9 of 10 topics published

🗄️ Vector Databases

9 of 9 topics published

📚 RAG

27 of 31 topics published
1101

RAG (Retrieval-Augmented Generation) – Overview

The full RAG pipeline, and why grounding answers beats relying on memorized knowledge.

1102

RAG Architecture

The offline ingestion vs online query split, and every component involved.

1103

RAG Pipeline (with Code)

A concrete, working ingestion and query pipeline implementation.

1104

Document Processing for RAG

Extracting clean, usable text — the critical first step of ingestion.

1105

Document Chunking

Why documents are split before embedding, and the core size tradeoff.

1106

Chunking Strategies

Fixed-size, semantic, and structure-aware chunking compared.

1107

Chunk Size

The tradeoff behind this key parameter, and how to choose it empirically.

1108

Chunk Overlap

Preventing information loss at chunk boundaries.

1109

Vector Retrieval

The RAG-specific retrieval step, and choosing top_k.

1110

Hybrid RAG

Combining semantic and keyword retrieval within a RAG pipeline.

1111

Reranking

A second, more precise relevance pass over initial retrieval candidates.

1112

Context Retrieval (Context Assembly)

Ordering, formatting and fitting retrieved chunks before generation.

1113

RAG Prompt

The prompt template that drives grounded, citable, hallucination-resistant answers.

1114

RAG Evaluation

Measuring retrieval and generation quality as two separate stages.

1115

RAG Hallucinations

Why RAG reduces but doesn't eliminate hallucination, with real failure patterns.

1116

RAG Failure Modes

A diagnostic table of common RAG failures and where to look for each.

1117

RAG Security

Access control on retrieved content, and indirect injection via documents.

1118

RAG vs Fine-Tuning

Knowledge injection vs behavior change — a practical decision framework.

1119

RAG vs Long Context

Why retrieval still matters even as context windows grow larger.

1120

Advanced RAG

Query transformation, multi-query retrieval, and self-correction loops.

1201

PDF for RAG

Why PDFs are deceptively hard to extract cleanly, and how to approach it.

1202

Document Parsing

Plain text vs structure-aware parsing, and why structure matters.

1203

OCR for RAG

Extracting text from scanned documents, and the errors OCR introduces.

1204

HTML for RAG

Separating real content from navigation and boilerplate on web pages.

1205

Markdown for RAG

Why Markdown's explicit structure makes it the easiest source format.

1206

Document Cleaning

Removing artifacts and boilerplate before chunking and embedding.

1207

Metadata in RAG

What to capture at ingestion time, and why it can't be added retroactively.

🎛️ Fine-tuning

9 of 11 topics published

🖼️ Multimodal AI

10 of 10 topics published

🛠️ Tool Calling

9 of 9 topics published

Ready to go from notes to a real career?

Join CodingNow's Generative AI Engineering course — live mentorship, hands-on projects, and 100% placement support in Delhi NCR.

Enroll Now — Free Demo Available
💬 Talk to Advisor
1
WhatsApp

Latest from Our Blog

Insights on AI, Data Science, Full Stack & Career

View All Articles →