Gen-AI Developer Classroom notes 29/May/2026

Connecting to AWS Bedrock Refer Here for langchain aws integration Create a new directory initialize with uv and add the following packages uv add langchain python-dotenv langchain-aws Open in vscode and select interpretor In main.py from langchain.agents import create_agent from langchain_aws import ChatBedrockConverse from langchain.chat_models import init_chat_model from dotenv import load_dotenv import os load_dotenv() def… Continue reading Gen-AI Developer Classroom notes 29/May/2026

Gen-AI Developer Classroom notes 23/May/2026

Lets complete the library mcp implementation Refer Here for the changes done Instructions # create a new folder git clone https://github.com/GenAIDevelopment/agenticai.git cd may26/mcp/library-mcp docker compose up -d Now for the client execute npx @modelcontextprotocol/inspector and connect mcp inspector to the url http://localhost:19000/mcp How about Agent Refer Here for a client code I want an MCP… Continue reading Gen-AI Developer Classroom notes 23/May/2026

Gen-AI Developer Classroom notes 21/May/2026

Course Walkthrough Objectives RAG Vector Databases Agents Agentic AI – Workflow Tools – MCP Deep Agents Fine-tuning Cost Control & Governanace: Gaurd rails Grounding Costs control Observability Deployment: Containers Cloud Technologies and Frameworks Models: Cloud GCP AWS Azure SaaS: Claude OpenAi Gemini Self Hosted: qwen deepseek llama gemma gpt-oss Frameworks: langchain langgraph deepagents unsloth Language:… Continue reading Gen-AI Developer Classroom notes 21/May/2026

Gen-AI Developer Classroom notes 19/May/2026

Continuing library mcp Problem: MCP Server for College Library Users: Librarians Students Think of librarian activities Pending returns issue books process return books fine management add books retiring books quarterly summary fines return and issue summary account_balance no dues certificates article subscriptions book catalog manage reservations rack management process damage process lost books Track returns… Continue reading Gen-AI Developer Classroom notes 19/May/2026

Gen-AI Developer Classroom notes 17/May/2026

MCP – Client Building mcp client with fast mcp Refer Here for changes Using mcp servers in langchain As part of this we will build a very small agent which will have llm and also mcp servers Refer Here for the basic agent which adds the book to the library by calling mcp server

Gen-AI Developer Classroom notes 16/May/2026

Library – MCP We will try to connect our mcp server which interacts with database with claude Connecting to a mysql database Connection Cursor For python to speak with mysql it needs a connector (external package) External packages for mysql connection Sample insert record INSERT INTO `books` (`id`, `title`, `author`, `published_year`, `available_copies`, `total_copies`, `genre`, `available`,… Continue reading Gen-AI Developer Classroom notes 16/May/2026