<?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: Dev Hajare</title>
    <description>The latest articles on DEV Community by Dev Hajare (@dev_hajare_d11ce990734a91).</description>
    <link>https://dev.to/dev_hajare_d11ce990734a91</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%2F4062735%2F49da10d2-31ed-4cd2-b2d5-534219151b99.png</url>
      <title>DEV Community: Dev Hajare</title>
      <link>https://dev.to/dev_hajare_d11ce990734a91</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dev_hajare_d11ce990734a91"/>
    <language>en</language>
    <item>
      <title>Are We Sending Too Much Data to LLMs? Agentic Production Support (APS)</title>
      <dc:creator>Dev Hajare</dc:creator>
      <pubDate>Fri, 21 Aug 2026 04:00:42 +0000</pubDate>
      <link>https://dev.to/dev_hajare_d11ce990734a91/are-we-sending-too-much-data-to-llms-agentic-production-support-aps-b5p</link>
      <guid>https://dev.to/dev_hajare_d11ce990734a91/are-we-sending-too-much-data-to-llms-agentic-production-support-aps-b5p</guid>
      <description>&lt;p&gt;While working on Agentic AI for production support, one question came to my mind:&lt;br&gt;
Do we really know what data we are sending to the LLM?&lt;/p&gt;

&lt;p&gt;Let's take a simple production incident.&lt;br&gt;
Host: ip-10–0–21–145&lt;br&gt;
Memory: 1024 MB&lt;br&gt;
Contact: &lt;a href="mailto:user@example.com"&gt;user@example.com&lt;/a&gt;&lt;br&gt;
Authorization: Bearer abc.def.ghi&lt;/p&gt;

&lt;p&gt;ERROR: Service failed due to disk space issue&lt;br&gt;
For RCA, the LLM mainly needs to understand:&lt;br&gt;
&lt;strong&gt;"Service failed because of a disk space issue."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It doesn't really need the actual hostname, email, AWS resource details, file paths, capacity values or authorization token.&lt;/p&gt;

&lt;p&gt;This is where I started looking at the LLM as a Data Egress Boundary.&lt;br&gt;
Instead of:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Production Data → RAG → LLM&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I am looking at:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Production Data → Clean/Sanitization Layer → RAG → LLM&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before anything goes to an LLM or embedding model, sensitive information should be cleaned or redacted.&lt;/p&gt;

&lt;p&gt;But there is another important point.&lt;/p&gt;

&lt;p&gt;RAG itself is not the security layer.&lt;/p&gt;

&lt;p&gt;We normally think that our data is safe because we are using RAG. But before storing a document in a vector database, we generate embeddings.&lt;/p&gt;

&lt;p&gt;So the actual flow can be:&lt;br&gt;
&lt;strong&gt;Raw Data → Embedding Model → Vector DB → Retrieval → LLM&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This means sanitization should happen before embedding as well, not only before the final LLM call. The same principle should apply to retrieval queries and AI observability logs.&lt;/p&gt;

&lt;p&gt;For high-risk information like API keys, passwords, JWTs or bearer tokens, I prefer a simple rule:&lt;br&gt;
If sensitive data is still detected after sanitization → don't call the model.&lt;/p&gt;

&lt;p&gt;In my view, AI governance should not be only a policy document saying:&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;"Don't send sensitive data to AI."&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
It should be part of the architecture itself.&lt;/p&gt;

&lt;p&gt;Raw Context → Sanitize → Validate → RAG / LLM&lt;/p&gt;

&lt;p&gt;The objective is not to remove useful context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The objective is:&lt;br&gt;
Give AI enough context to solve the problem, but don't give it information it doesn't need.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;#AgenticAI #AIGovernance #LLM #RAG #GenAI #AIArchitecture #ProductionSupport&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/devhazare/agentic-production-support" rel="noopener noreferrer"&gt;https://github.com/devhazare/agentic-production-support&lt;/a&gt; &lt;/p&gt;

</description>
      <category>architecture</category>
      <category>llm</category>
      <category>privacy</category>
      <category>security</category>
    </item>
    <item>
      <title>What If AI Is Just Telling You What You Want to Hear?</title>
      <dc:creator>Dev Hajare</dc:creator>
      <pubDate>Thu, 20 Aug 2026 19:09:31 +0000</pubDate>
      <link>https://dev.to/dev_hajare_d11ce990734a91/what-if-ai-is-just-telling-you-what-you-want-to-hear-o81</link>
      <guid>https://dev.to/dev_hajare_d11ce990734a91/what-if-ai-is-just-telling-you-what-you-want-to-hear-o81</guid>
      <description>&lt;p&gt;Recently, I was discussing usage of AI Chatbot (chatgpt/claude) with one of my friends.&lt;/p&gt;

&lt;p&gt;She had become so dependent on AI Chatbot that almost every question or decision was being validated through a AI chatbot.&lt;/p&gt;

&lt;p&gt;I raised an alarm:&lt;br&gt;
&lt;strong&gt;“You are asking AI Chatbot to confirm too many of your decisions.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;She wasn't convinced.&lt;br&gt;
So, time for a small experiment.&lt;br&gt;
Same Question. Different Direction.&lt;/p&gt;

&lt;p&gt;First, I asked AI Chatbot:&lt;br&gt;
&lt;strong&gt;“I am learning German. Is it suitable for my career?”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The answer was encouraging:&lt;br&gt;
&lt;strong&gt;“Yes, great choice. German can be useful for your career. Here is a learning path and daily plan...”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Sounds good.&lt;/p&gt;

&lt;p&gt;Then I changed the context and framed the question negatively:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;“My friend is pushing me to learn German, but I think it is just hype. I don't think I should learn it.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Interestingly, the answer changed direction. AI Chatbot started giving reasons why German might not be the best priority and suggested other alternatives.&lt;/p&gt;

&lt;p&gt;Same underlying decision. Different framing. Different answer.&lt;br&gt;
That is where we need to understand how AI Chatbot influences our thinking.&lt;/p&gt;

&lt;p&gt;AI Chatbot Is Not Necessarily Lying&lt;/p&gt;

&lt;p&gt;AI Chatbot tries to respond based on our question, context and available information.&lt;/p&gt;

&lt;p&gt;The problem is that we humans already have confirmation bias — we naturally look for information supporting what we believe.&lt;br&gt;
AI Chatbot can unintentionally amplify this.&lt;br&gt;
If I strongly frame a question in one direction, I may receive a perfectly written and logical explanation supporting that direction.&lt;br&gt;
And because the answer sounds confident, we may stop questioning it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI Chatbot vs. Google Search&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There is an important difference.&lt;/p&gt;

&lt;p&gt;If I search Google for:&lt;br&gt;
&lt;strong&gt;“Does the German language have career scope?”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I get multiple websites, opinions, statistics and discussions.&lt;br&gt;
I have to research and make the decision.&lt;br&gt;
But when I ask an AI Chatbot chatbot:&lt;br&gt;
&lt;strong&gt;“Should I learn German?”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I receive a direct, conversational and often personalized recommendation.&lt;/p&gt;

&lt;p&gt;That feels less like searching and more like taking advice from a friend.&lt;/p&gt;

&lt;p&gt;And that's powerful — but also something we need to handle carefully.&lt;br&gt;
Don't Ask AI Chatbot to Validate You&lt;/p&gt;

&lt;p&gt;Instead of:&lt;br&gt;
&lt;strong&gt;“German is good for my career, right?”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Try:&lt;br&gt;
&lt;strong&gt;“Evaluate whether learning German has meaningful career value. Give me arguments for and against it. Don't assume that I should learn it.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Then ask:&lt;br&gt;
&lt;strong&gt;“Now challenge your own recommendation. What assumptions could be wrong?”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This small change can make a big difference.&lt;/p&gt;

&lt;p&gt;People working in technology may understand prompts, hallucinations, context and AI Chatbot limitations.&lt;/p&gt;

&lt;p&gt;But millions of non-technical users may not.&lt;/p&gt;

&lt;p&gt;So, if you know someone who is using AI Chatbot to validate every decision, don't tell them to stop using AI Chatbot.&lt;/p&gt;

&lt;p&gt;Teach them to question AI Chatbot.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ask neutral questions.&lt;/li&gt;
&lt;li&gt;Ask for opposing views.&lt;/li&gt;
&lt;li&gt;Cross-check important facts.&lt;/li&gt;
&lt;li&gt;Look for evidence.
And most importantly:
Use AI Chatbot as a thinking partner, not as your final decision-maker.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI Chatbot can behave like a very supportive friend.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;But sometimes, the friend you need is the one who challenges you.&lt;/em&gt;&lt;/strong&gt; ;-) &lt;/p&gt;

</description>
      <category>ai</category>
      <category>chatgpt</category>
      <category>claude</category>
      <category>llm</category>
    </item>
    <item>
      <title>Agentic AI for Production Support: Moving from Alerts to Intelligent Incident Resolution</title>
      <dc:creator>Dev Hajare</dc:creator>
      <pubDate>Sun, 16 Aug 2026 07:37:27 +0000</pubDate>
      <link>https://dev.to/dev_hajare_d11ce990734a91/agentic-ai-for-production-support-moving-from-alerts-to-intelligent-incident-resolution-d9g</link>
      <guid>https://dev.to/dev_hajare_d11ce990734a91/agentic-ai-for-production-support-moving-from-alerts-to-intelligent-incident-resolution-d9g</guid>
      <description>&lt;h1&gt;
  
  
  Agentic AI for Production Support: Moving from Alerts to Intelligent Incident Resolution
&lt;/h1&gt;

&lt;p&gt;Production support today is still highly dependent on engineers.&lt;/p&gt;

&lt;p&gt;An alert comes in → engineer checks logs → searches previous incidents → identifies possible RCA → validates the solution → takes action.&lt;/p&gt;

&lt;p&gt;While working on this problem, I started exploring a simple question:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Can Agentic AI reduce this dependency without giving AI uncontrolled access to production?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is the idea behind my &lt;strong&gt;Agentic Production Support&lt;/strong&gt; project.&lt;/p&gt;

&lt;h2&gt;
  
  
  From Alert to AI-Assisted RCA
&lt;/h2&gt;

&lt;p&gt;The basic flow I am building is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Incident → Clean Layer → RAG → AI Agent → RCA → Validation → Human Approval → Action&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Instead of sending every incident directly to an LLM, the system first prepares and controls the context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RAG (Retrieval-Augmented Generation)&lt;/strong&gt; searches historical incidents and knowledge to provide relevant context.&lt;/p&gt;

&lt;p&gt;The AI agent then uses this context to generate a possible &lt;strong&gt;Root Cause Analysis (RCA)&lt;/strong&gt; and recommended action.&lt;/p&gt;

&lt;p&gt;But there is an important challenge here.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Governance Before AI Intelligence
&lt;/h2&gt;

&lt;p&gt;Production logs can contain:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IP addresses and hostnames&lt;/li&gt;
&lt;li&gt;AWS resource IDs and ARNs&lt;/li&gt;
&lt;li&gt;Project/environment information&lt;/li&gt;
&lt;li&gt;File paths&lt;/li&gt;
&lt;li&gt;Email addresses and PII&lt;/li&gt;
&lt;li&gt;API keys, JWTs and bearer tokens&lt;/li&gt;
&lt;li&gt;Infrastructure capacity information&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The LLM doesn't need most of this information to understand that a service failed because a disk became full.&lt;/p&gt;

&lt;p&gt;So I introduced a &lt;strong&gt;Model Egress Governance Layer&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Production Incident&lt;br&gt;
        ↓&lt;br&gt;
Clean / Sanitization Layer&lt;br&gt;
        ↓&lt;br&gt;
RAG + Embeddings&lt;br&gt;
        ↓&lt;br&gt;
AI Agent&lt;br&gt;
        ↓&lt;br&gt;
RCA + Validation&lt;br&gt;
        ↓&lt;br&gt;
Human-in-the-Loop&lt;br&gt;
        ↓&lt;br&gt;
Action&lt;/p&gt;

&lt;p&gt;The principle is simple:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Give AI the technical context it needs, but not the identity of your production environment.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The same control should apply before &lt;strong&gt;LLM calls, embeddings, RAG indexing, retrieval queries and AI observability&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For high-risk information such as passwords, API keys or authorization tokens, my approach is &lt;strong&gt;fail closed&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sensitive information still detected → Block the model call.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Agentic Production Support?
&lt;/h2&gt;

&lt;p&gt;I don't see Agentic AI replacing production engineers.&lt;/p&gt;

&lt;p&gt;I see it reducing the repetitive work around:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Incident Detection → Correlation → Knowledge Retrieval → RCA → Validation → Recommended Action&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;while keeping governance and &lt;strong&gt;Human-in-the-Loop (HITL)&lt;/strong&gt; controls around high-impact actions.&lt;/p&gt;

&lt;p&gt;This project is still evolving, and I am building it openly so that the architecture can be tested, challenged and improved.&lt;/p&gt;

&lt;h3&gt;
  
  
  Open Source / GitHub
&lt;/h3&gt;

&lt;p&gt;The implementation includes &lt;strong&gt;Python, LLM integration, RAG, embeddings, AI agents, incident management, RCA and AI governance&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;GitHub:&lt;/strong&gt;  &lt;a href="https://github.com/devhazare/agentic-production-support" rel="noopener noreferrer"&gt;https://github.com/devhazare/agentic-production-support&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you are working on &lt;strong&gt;AIOps, Agentic AI, SRE automation, LLMOps, RAG or AI Governance&lt;/strong&gt;, I would be interested in your feedback and contributions.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>rag</category>
      <category>agentaichallenge</category>
    </item>
  </channel>
</rss>
