<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Uma Baleboyina</title>
    <description>The latest articles on DEV Community by Uma Baleboyina (@uma_baleboyina_1cb374cc73).</description>
    <link>https://dev.to/uma_baleboyina_1cb374cc73</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3919275%2F7117ecd5-2284-47fd-a72b-18c6039117e7.png</url>
      <title>DEV Community: Uma Baleboyina</title>
      <link>https://dev.to/uma_baleboyina_1cb374cc73</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/uma_baleboyina_1cb374cc73"/>
    <language>en</language>
    <item>
      <title>From Simple LLMs to Intelligent AI Agents</title>
      <dc:creator>Uma Baleboyina</dc:creator>
      <pubDate>Tue, 26 May 2026 16:12:40 +0000</pubDate>
      <link>https://dev.to/uma_baleboyina_1cb374cc73/from-simple-llms-to-intelligent-ai-agents-32gi</link>
      <guid>https://dev.to/uma_baleboyina_1cb374cc73/from-simple-llms-to-intelligent-ai-agents-32gi</guid>
      <description>&lt;p&gt;&lt;strong&gt;Understanding Deep Agents and Agentic AI&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Artificial Intelligence has evolved from simple text generation models to intelligent systems called AI Agents. Before understanding agents, we first need to understand how Large Language Models (LLMs) work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What are LLMs?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;LLMs (Large Language Models) are AI models trained on massive amounts of data. Their main job is to predict the next token based on previous tokens.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For example:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Input: "India is a"&lt;br&gt;
Output: "country"&lt;/p&gt;

&lt;p&gt;The model continuously predicts the next token to generate complete responses.&lt;/p&gt;

&lt;p&gt;Modern AI models can generate different types of outputs, also called modalities.&lt;/p&gt;

&lt;p&gt;Some common modalities are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Text generation&lt;/li&gt;
&lt;li&gt;Code generation&lt;/li&gt;
&lt;li&gt;Image generation&lt;/li&gt;
&lt;li&gt;Audio generation&lt;/li&gt;
&lt;li&gt;Video generation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Examples:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chatbots generate text&lt;/li&gt;
&lt;li&gt;Code assistants generate code&lt;/li&gt;
&lt;li&gt;AI art tools generate images&lt;/li&gt;
&lt;li&gt;Video models generate videos&lt;/li&gt;
&lt;li&gt;Problem with Using Different LLM APIs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Different AI companies provide different APIs.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For example:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;OpenAI API&lt;/li&gt;
&lt;li&gt;Gemini API&lt;/li&gt;
&lt;li&gt;Claude API&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Each API has:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;different syntax&lt;/li&gt;
&lt;li&gt;different configurations&lt;/li&gt;
&lt;li&gt;different SDKs&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So developers had to write separate code for every model.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How LangChain Helped&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;LangChain introduced a common framework for working with multiple LLMs.&lt;/p&gt;

&lt;p&gt;Instead of rewriting the entire codebase for each model, developers can use a common interface.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example idea:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Without LangChain:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;openai.chat()&lt;/li&gt;
&lt;li&gt;gemini.generate()&lt;/li&gt;
&lt;li&gt;claude.messages()&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;With LangChain:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;llm.invoke()&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Only the configuration changes slightly.&lt;/li&gt;
&lt;li&gt; This made AI application development much easier.&lt;/li&gt;
&lt;li&gt; From Simple LLMs to Intelligent Agents&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Simple LLMs can generate:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;text&lt;/li&gt;
&lt;li&gt;code&lt;/li&gt;
&lt;li&gt;images&lt;/li&gt;
&lt;li&gt;videos&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But they cannot directly perform real-world tasks like:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;booking train tickets&lt;/li&gt;
&lt;li&gt;reserving hotels&lt;/li&gt;
&lt;li&gt;sending emails&lt;/li&gt;
&lt;li&gt;searching live data&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Initially, developers combined LLMs and traditional programming logic to perform such actions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example flow:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;User Request&lt;br&gt;
    ↓&lt;br&gt;
LLM understands request&lt;br&gt;
    ↓&lt;br&gt;
Python code calls APIs&lt;br&gt;
    ↓&lt;br&gt;
Action gets completed&lt;br&gt;
&lt;strong&gt;Tool Calling in AI Agents&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Later, AI systems evolved into tool-using agents.&lt;/p&gt;

&lt;p&gt;Now the LLM itself can decide:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;which tool to use&lt;/li&gt;
&lt;li&gt;when to use it&lt;/li&gt;
&lt;li&gt;what parameters to pass&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Examples of tools:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;search engines&lt;/li&gt;
&lt;li&gt;calculators&lt;/li&gt;
&lt;li&gt;booking APIs&lt;/li&gt;
&lt;li&gt;databases&lt;/li&gt;
&lt;li&gt;browsers
This made AI systems appear more intelligent and autonomous.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;ReAct Agents&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One important concept in Agentic AI is the ReAct Agent.&lt;/p&gt;

&lt;p&gt;ReAct stands for: Reason + Act&lt;/p&gt;

&lt;p&gt;The agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reasons about the problem&lt;/li&gt;
&lt;li&gt;Chooses an action/tool&lt;/li&gt;
&lt;li&gt;Observes the result&lt;/li&gt;
&lt;li&gt;Continues reasoning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Flow:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Thought → Action → Observation → Thought&lt;/p&gt;

&lt;p&gt;This allows the AI agent to solve complex tasks step-by-step.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenges in AI Agents&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Even though agents are powerful, they still face many challenges.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Garbage In, Garbage Out (Prompt Quality)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;LLMs highly depend on prompts.&lt;/p&gt;

&lt;p&gt;If the input prompt is poor or unclear, the output quality also becomes poor.&lt;/p&gt;

&lt;p&gt;This is called:&lt;/p&gt;

&lt;p&gt;Garbage In → Garbage Out&lt;/p&gt;

&lt;p&gt;Better prompts usually produce better results.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Guardrails&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Guardrails are safety mechanisms added to AI systems.&lt;/p&gt;

&lt;p&gt;Their purpose is to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;prevent harmful outputs&lt;/li&gt;
&lt;li&gt;protect sensitive information&lt;/li&gt;
&lt;li&gt;restrict unsafe actions&lt;/li&gt;
&lt;li&gt;ensure ethical behavior
Example:
An AI agent should not reveal private user data or perform dangerous actions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. Grounding&lt;/strong&gt;&lt;br&gt;
Grounding means the AI should provide information based on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;real facts&lt;/li&gt;
&lt;li&gt;reliable sources&lt;/li&gt;
&lt;li&gt;actual context
If the model does not know something, it should honestly say:
“I do not have enough information.”
instead of generating false information.
This helps reduce hallucinations.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AI systems are evolving from simple text generators into intelligent autonomous agents. Frameworks like LangChain and ReAct-based architectures are helping developers build more capable AI applications.&lt;/p&gt;

&lt;p&gt;However, challenges such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;prompt quality&lt;/li&gt;
&lt;li&gt;safety&lt;/li&gt;
&lt;li&gt;hallucinations&lt;/li&gt;
&lt;li&gt;grounding&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>langchain</category>
      <category>agentaichallenge</category>
    </item>
    <item>
      <title>What is MCP? My Beginner's Guide to Model Context Protocol</title>
      <dc:creator>Uma Baleboyina</dc:creator>
      <pubDate>Fri, 08 May 2026 07:51:19 +0000</pubDate>
      <link>https://dev.to/uma_baleboyina_1cb374cc73/what-is-mcp-my-beginners-guide-to-model-context-protocol-15bk</link>
      <guid>https://dev.to/uma_baleboyina_1cb374cc73/what-is-mcp-my-beginners-guide-to-model-context-protocol-15bk</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When I started learning Generative AI, one of the first things I came across was something called MCP. At first it sounded complex, but once I understood it, everything clicked. In this blog, I want to share my understanding in the simplest way possible.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is MCP?&lt;/strong&gt;&lt;br&gt;
MCP stands for Model Context Protocol. It is a lightweight protocol developed by Anthropic — the company that also created Claude AI. In simple terms, MCP acts as a bridge between an AI assistant and the outside world — connecting it to functions, tools, and external environments so the AI can actually do things, not just talk.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where did the idea come from?&lt;/strong&gt;&lt;br&gt;
MCP was inspired by LSP — the Language Server Protocol. If you have used VS Code, you already benefited from LSP without knowing it. LSP is the reason VS Code can support multiple programming languages like Python, JavaScript, Java and more — all through one common standard.&lt;br&gt;
MCP follows the same idea. Instead of building a separate integration for every AI model, MCP provides one common standard that works across multiple models. You build the server once, and any MCP-compatible AI model can use it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do you build an MCP server?&lt;/strong&gt;&lt;br&gt;
Building your first MCP server is simpler than it sounds. You start by importing MCP from the FastMCP library. Then you define your tools using the &lt;a class="mentioned-user" href="https://dev.to/mcp"&gt;@mcp&lt;/a&gt;.tool decorator and write the logic — the actual code that performs the action. Finally, you connect it to Claude and your server is ready.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The two main components of MCP&lt;/strong&gt;&lt;br&gt;
MCP has two core components:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MCP Client —&lt;/strong&gt;  This is the intelligent side, like Claude. It understands the user's request and decides what needs to be done.&lt;br&gt;
&lt;strong&gt;MCP Server —&lt;/strong&gt; This is the action side. It actually performs the tasks that the client requests.&lt;/p&gt;

&lt;p&gt;Think of the client as the brain and the server as the hands.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How does the workflow work?&lt;/strong&gt;&lt;br&gt;
Here is the step-by-step flow of how MCP works in action:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjffb3vzmt6veaev2rq50.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjffb3vzmt6veaev2rq50.png" alt="MCP Workflow Diagram" width="434" height="567"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tools vs Resources vs Prompts — what is the difference?&lt;/strong&gt;&lt;br&gt;
This is one of the most important concepts in MCP:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tools —&lt;/strong&gt; These are used to perform actions. When a user wants something done — like fetching weather data or saving a file — a tool does it.&lt;br&gt;
&lt;strong&gt;Resources —&lt;/strong&gt; These are used to feed data to the agent. They are read-only information sources the AI can access when it needs context or data.&lt;br&gt;
&lt;strong&gt;Prompts —&lt;/strong&gt; These are reusable question templates. They represent the general questions or instructions a user commonly asks the AI.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
MCP is a powerful and elegant idea — one standard protocol that connects any AI model to any tool or data source. It removes the need to build custom integrations for every model and makes AI agents truly useful in the real world. I am just getting started with MCP, and I am excited to build more servers and share what I learn along the way.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>beginners</category>
      <category>python</category>
    </item>
  </channel>
</rss>
