Gen-AI Developer Classroom notes 27/Apr/2026

Customer Support Tickets and grievance Setting up the customer care database Ensure Docker Desktop is installed Windows Mac Now lets start the postgres container with sample schema in it Run the container docker run –name customer-care-db \ -e POSTGRES_USER=myuser \ -e POSTGRES_PASSWORD=mypassword \ -e POSTGRES_DB=mydb \ -p 5432:5432 \ -d postgres:16 Windows docker run –name… Continue reading Gen-AI Developer Classroom notes 27/Apr/2026

Gen-AI Developer Classroom notes 22/Apr/2026

What LLM does ? Large Language models just predict the next token. LLMs can generate various types of data (Modal) Text Image Audio Video Code LLM predict next token and that is passed back to the llm and this continues till end of statement or token limit reached

Gen-AI Developer Classroom notes 22/Apr/2026

What LLM does ? Large Language models just predict the next token. LLMs can generate various types of data (Modal) Text Image Audio Video Code LLM predict next token and that is passed back to the llm and this continues till end of statement or token limit reached

Gen-AI Developer Classroom notes 21/Apr/2026

Foundations Definitions and Terms Artificial Intelligence Machine Learning Neural Network Deep learning Vector Representation GPU How to use LLM LLM creation Company offers it directly Use LLM via Cloud Services Buy hardware and run opensource models on premises

Gen-AI Developer Classroom notes 19/Apr/2026

Customer Support Tickets and grievance Cases: Known issue and Known Resolution New Issue, Classify and Notify to right team Serious Issues , Notifying superiors Domain Options: Telecom E-Commerce Banking Health Care Hospitality Insurance App Based Highway Tolls Minimum Viable Product: User should have some web interface where he enters his concern Agent should respond and… Continue reading Gen-AI Developer Classroom notes 19/Apr/2026

Gen-AI Developer Classroom notes 19/Apr/2026

Customer Support Tickets and grievance Cases: Known issue and Known Resolution New Issue, Classify and Notify to right team Serious Issues , Notifying superiors Domain Options: Telecom E-Commerce Banking Health Care Hospitality Insurance App Based Highway Tolls Minimum Viable Product: User should have some web interface where he enters his concern Agent should respond and… Continue reading Gen-AI Developer Classroom notes 19/Apr/2026

Python Classroom notes 15/Apr/2026

python arg parse contd… Subparser: This gives an option to create a different parser with argparse Refer Here Try building a cli around project euler calculator with general and financial

Gen-AI Developer Classroom notes 15/Apr/2026

Primitives Thread => This is the current conversation langraph accepts the config, As part of that config we can pass thread id To remember the conversations with in particular thread we use short term memory. To save the state at every node with in a thread langgraph has checkpointer Checkpoints prompt Explain configurable structure in… Continue reading Gen-AI Developer Classroom notes 15/Apr/2026

Gen-AI Developer Classroom notes 15/Apr/2026

Primitives Thread => This is the current conversation langraph accepts the config, As part of that config we can pass thread id To remember the conversations with in particular thread we use short term memory. To save the state at every node with in a thread langgraph has checkpointer Checkpoints prompt Explain configurable structure in… Continue reading Gen-AI Developer Classroom notes 15/Apr/2026

Python Classroom notes 14/Apr/2026

Building Command line Applications A command line application helps in a simpler interfaces easy to automate A command line application is supposed to have help validations Generally command line applications have two types of arguments positional arguments named arguments Prompt: Give me examples on building a write cli command with named arguments I’m interested in… Continue reading Python Classroom notes 14/Apr/2026

Gen-AI Developer Classroom notes 14/Apr/2026

MessagesState This is useful shortcut if you want to work with Messages This has built-in messages key It also has built-in add_messages Reducer Refer Here for notebook with state related stuff. Each graphs invocation is stateless To make it stateful : add previous state to current Langgraph supports this with, To understand them we need… Continue reading Gen-AI Developer Classroom notes 14/Apr/2026