Python Classroom notes 24/Mar/2026

Object Oriented Programming Mental model: Every thing is object Object has Contents: What it has Characteristics: What it can do Library as a system Objects: book: characterstics: rent contents: id author title librarian characteristics: lend books collect books Contents: username emailid User: Characteristic: rent book return book pay subscription Contents: username mobileno email rack Characteristics:… Continue reading Python Classroom notes 24/Mar/2026

Python Classroom notes 20/Mar/2026

Point of Sale Implementing inventory functions add item is already implemented update, get and delete item Refer Here for the changes Exercise: Try debugging the code with test.py by adding atleast 3 products updates delete search items

Gen-AI Developer Classroom notes 20/Mar/2026

Writing Effective Prompts Clear and Explicit Prompts Example Explain leadership A clear and explicit prompt You are a leadership coach. Explain leadership to college students Include: – 2 definitions – 2 examples – 3 tips Keep it under 200 words The second prompt works better because Role gives a perspective (coach vs general assistants) Audience… Continue reading Gen-AI Developer Classroom notes 20/Mar/2026

Gen-AI Developer Classroom notes 18/Mar/2026

Writing Effective Prompts Clear and Explicit Prompts Example Explain leadership A clear and explicit prompt You are a leadership coach. Explain leadership to college students Include: – 2 definitions – 2 examples – 3 tips Keep it under 200 words The second prompt works better because Role gives a perspective (coach vs general assistants) Audience… Continue reading Gen-AI Developer Classroom notes 18/Mar/2026

Gen-AI Developer Classroom notes 18/Mar/2026

Writing Effective Prompts Clear and Explicit Prompts Example Explain leadership A clear and explicit prompt You are a leadership coach. Explain leadership to college students Include: – 2 definitions – 2 examples – 3 tips Keep it under 200 words The second prompt works better because Role gives a perspective (coach vs general assistants) Audience… Continue reading Gen-AI Developer Classroom notes 18/Mar/2026

Gen-AI Developer Classroom notes 17/Mar/2026

Terms of LLM Temperature: range (0-2) less temperature => factual information more temperature => creative Context length: Number of Tokens (input or output) Give me a list of models with context lengths in descending order, Ensure latest models are also considered Token LLM Costs We have two types of LLMS Opensource LLM: The cost is… Continue reading Gen-AI Developer Classroom notes 17/Mar/2026

Python Classroom notes 16/Mar/2026

Dictionary and Dictionary comprehensions dictionary comprehension dictionary = { key: value for vars in iterable } Refer Here for dictionary examples Strings Refer Here for basic strings. Sample Application This would be an in memory POS (Point of Sale) Any POS system will have two main functionalities Generating Bills based on items added inventory

Gen-AI Developer Classroom notes 16/Mar/2026

LLMs Evolution: AI ML Neural Networks Deep learning networks One popular example for ML Deep learning NLP (Natural Language Processing) LLM basically predicts next word using transformers Vectors embed the meaning of text. Embedding model will have all possible vocabulary Once we have embedding model we can do semantic search. Embedding models will have tokens

Gen-AI Developer Classroom notes 14/Mar/2026

AI Engineering Layers We will be focused on building Applications LLMs Chat GPT is not LLM LLMs on a broader note are of two types Propietary Open source Leaderboard Usecase: I want to use grok model from my Application which is developed in python Java C# Javascript Interact with model with code yes via APIs/SDKs