<?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: Saranya Madala</title>
    <description>The latest articles on DEV Community by Saranya Madala (@saranyam_15).</description>
    <link>https://dev.to/saranyam_15</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3968904%2Ff6b8a117-33cb-40af-82dd-a4377bc12e0f.png</url>
      <title>DEV Community: Saranya Madala</title>
      <link>https://dev.to/saranyam_15</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/saranyam_15"/>
    <language>en</language>
    <item>
      <title>What happens when we type a prompt into ChatGPT??</title>
      <dc:creator>Saranya Madala</dc:creator>
      <pubDate>Fri, 05 Jun 2026 18:34:47 +0000</pubDate>
      <link>https://dev.to/saranyam_15/what-happens-when-we-type-a-prompt-into-chatgpt-3287</link>
      <guid>https://dev.to/saranyam_15/what-happens-when-we-type-a-prompt-into-chatgpt-3287</guid>
      <description>&lt;p&gt;After using ChatGPT for months I've realised what ChatGPT is doing to my words or sentences (input/prompt) before it even starts thinking...&lt;/p&gt;

&lt;p&gt;For this there are 4 varieties of steps involved in it:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1 : Tokenization (Our text gets chopped into tokens)&lt;/strong&gt;&lt;br&gt;
ChatGPT or any LLM models dont understand sentencesor words they only understand tokens (later they get converted into numbers we will discuss this in furthur steps )&lt;/p&gt;

&lt;p&gt;So every sentence or text we type as a prompt into the model it gets converted into tokens. This is sometimes also called chunking that are roughly syllables or short words .&lt;/p&gt;

&lt;p&gt;Lets have a look to the example block of code :&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%2F5ifnmxp0aarmjbn8275g.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%2F5ifnmxp0aarmjbn8275g.png" alt=" " width="800" height="309"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Weird fact: " ChatGPT" (with a leading space) is a different token than "ChatGPT". The model treats them differently. Whitespace is part of the vocabulary.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2 : Vectorization (Each tokens becomes a vector)&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;As we know a fact where LLM models can only undestand numbers so it converts the tokens into vectors i.e., giving some numbers to each and every chunked token . Basically ,a vector is a list of approx 12,000 numbers — that encodes its meaning. Similar words land near each other in this space. "king" and "queen" are close. "king" and "Apple" are far apart.&lt;/p&gt;

&lt;p&gt;This is the moment where language becomes math !!&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Step 3: The Transformer layer *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Our token vectors flow through approx 96 layers of attention. At each layer, every token "looks at" every other token and decides how much to weight it. This is how the model figures out that "it" in "the animal didn't cross the street because it was tired" refers to the animal, not the street.&lt;/p&gt;

&lt;p&gt;No rules. No grammar book. Just learnt weights doing matrix multiplication billions of times.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4: Sampling (One token gets sampled)&lt;/strong&gt;&lt;br&gt;
Basically the model does not output a sentence right away. It uses probability distribution for its entire vocabulary by sampling one token at a time and repeats this process until it reaches the stop condition.&lt;/p&gt;

&lt;p&gt;For example, let's say &lt;br&gt;
The capital of France is ------?&lt;br&gt;
Paris – 95% probability &lt;br&gt;
Italy - 80% probability &lt;br&gt;
Berlin – 81% probability&lt;br&gt;
Texas - 5 % probability&lt;/p&gt;

&lt;p&gt;So Paris has a 95% probability to complete the above sentence; Paris could be the next likely word to appear. &lt;/p&gt;

&lt;p&gt;That's it. No reasoning. No understanding. Just: What token is most likely to come next, given everything before it?&lt;/p&gt;

&lt;p&gt;The unsettling part: that simple process, scaled up, produces responses that feel like thinking.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>webdev</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Modern AI Landscape - My Understanding</title>
      <dc:creator>Saranya Madala</dc:creator>
      <pubDate>Fri, 05 Jun 2026 00:08:37 +0000</pubDate>
      <link>https://dev.to/saranyam_15/modern-ai-landscape-my-understanding-10ch</link>
      <guid>https://dev.to/saranyam_15/modern-ai-landscape-my-understanding-10ch</guid>
      <description>&lt;p&gt;Lets start our discussion from 2010 .&lt;/p&gt;

&lt;p&gt;Timeperiod 2010 - 2020 we have predictive AI models such as Recommendation systems , customer segmentation etc ..&lt;/p&gt;

&lt;p&gt;From 2020 the when the generative models were introduced to the world then the landscape was completely changed . We have this generative era till 2022 . &lt;br&gt;
Then industry was stepped into a new era called "Augumentation" models like AI Copilot . This was continued from 2022-2024 .&lt;/p&gt;

&lt;p&gt;Then came AI Agents—one of the most transformative innovations of the modern AI era. Unlike traditional AI systems that primarily generate responses, agents can reason, plan, use tools, and execute tasks autonomously. Today, the industry is rapidly evolving toward Autonomous Systems, where multiple specialized agents collaborate through orchestration frameworks to solve complex real-world problems.&lt;/p&gt;

&lt;p&gt;The best AI Timeline :&lt;/p&gt;

&lt;p&gt;Traditional ML&lt;br&gt;
     ↓&lt;br&gt;
Deep Learning&lt;br&gt;
     ↓&lt;br&gt;
Transformers (2017)&lt;br&gt;
     ↓&lt;br&gt;
Foundation Models&lt;br&gt;
     ↓&lt;br&gt;
LLMs (GPT Era)&lt;br&gt;
     ↓&lt;br&gt;
Prompt Engineering&lt;br&gt;
     ↓&lt;br&gt;
Embeddings&lt;br&gt;
     ↓&lt;br&gt;
Vector Databases&lt;br&gt;
     ↓&lt;br&gt;
RAG&lt;br&gt;
     ↓&lt;br&gt;
Function Calling&lt;br&gt;
     ↓&lt;br&gt;
AI Agents&lt;br&gt;
     ↓&lt;br&gt;
Agent Frameworks&lt;br&gt;
     ↓&lt;br&gt;
Multi-Agent Systems&lt;br&gt;
     ↓&lt;br&gt;
MCP&lt;br&gt;
     ↓&lt;br&gt;
Agentic AI&lt;br&gt;
     ↓&lt;br&gt;
Autonomous AI Organizations&lt;/p&gt;

&lt;p&gt;Just in the span of 6 years we saw a drastic change in the evolution of AI. Can't imagine how this AI is going to be in the next few years. &lt;/p&gt;

&lt;h1&gt;
  
  
  ai #machinelearning #python
&lt;/h1&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>discuss</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Documenting my AI Learning Journey !!</title>
      <dc:creator>Saranya Madala</dc:creator>
      <pubDate>Thu, 04 Jun 2026 23:39:47 +0000</pubDate>
      <link>https://dev.to/saranyam_15/documenting-my-ai-learning-journey--32bp</link>
      <guid>https://dev.to/saranyam_15/documenting-my-ai-learning-journey--32bp</guid>
      <description>&lt;p&gt;As a recent Computer Science graduate, I've decided to commit myself to learning AI consistently and sharing that journey publicly.&lt;/p&gt;

&lt;p&gt;In a world where many people document their daily lives, I want to document something that is transforming my future—my growth as an AI Engineer.&lt;/p&gt;

&lt;p&gt;This is my very first dev post, and the beginning of what I hope will be a long series of learning notes, project breakdowns, insights, challenges, and discoveries in AI, Machine Learning, LLMs, Agents, RAG, System Design, and beyond.&lt;/p&gt;

&lt;p&gt;My goal isn't just to consume knowledge but to build, experiment, and share what I learn along the way.&lt;/p&gt;

&lt;p&gt;Here's to staying curious, learning every day, and being consistent even when progress feels slow.&lt;/p&gt;

&lt;p&gt;Wish me luck on this journey!&lt;/p&gt;

&lt;h1&gt;
  
  
  AI #ArtificialIntelligence #MachineLearning #LLM #AIEngineering #LearningInPublic #BuildInPublic #SoftwareEngineering #TechJourney #CareerGrowth
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>buildinpublic</category>
      <category>learning</category>
      <category>machinelearning</category>
    </item>
  </channel>
</rss>
