<?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: Ayman Mohamed</title>
    <description>The latest articles on DEV Community by Ayman Mohamed (@ayman_kasim).</description>
    <link>https://dev.to/ayman_kasim</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%2F4036705%2Fc3e6a278-aea3-4073-b3fc-d1a63449d139.jpg</url>
      <title>DEV Community: Ayman Mohamed</title>
      <link>https://dev.to/ayman_kasim</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ayman_kasim"/>
    <language>en</language>
    <item>
      <title>Building SmartStock AI: An AI-Powered Inventory Management Platform with Django, LangChain &amp; Multi-Agent Workflows</title>
      <dc:creator>Ayman Mohamed</dc:creator>
      <pubDate>Sun, 19 Jul 2026 15:35:43 +0000</pubDate>
      <link>https://dev.to/ayman_kasim/building-smartstock-ai-an-ai-powered-inventory-management-platform-with-django-langchain--mhk</link>
      <guid>https://dev.to/ayman_kasim/building-smartstock-ai-an-ai-powered-inventory-management-platform-with-django-langchain--mhk</guid>
      <description>&lt;p&gt;Over the past few months, I've been exploring how AI can move beyond chatbots and become an active part of business workflows.&lt;/p&gt;

&lt;p&gt;That journey led me to build &lt;strong&gt;SmartStock AI&lt;/strong&gt;, an inventory management platform that combines modern web technologies with AI agents, Retrieval-Augmented Generation (RAG), demand forecasting, and automation.&lt;/p&gt;

&lt;p&gt;Instead of only tracking inventory, SmartStock AI helps businesses make proactive decisions.&lt;/p&gt;

&lt;h2&gt;
  
  
  What SmartStock AI Can Do
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🤖 Forecast future product demand&lt;/li&gt;
&lt;li&gt;📦 Recommend purchasing decisions through AI agents&lt;/li&gt;
&lt;li&gt;📚 Answer inventory-related questions using Hybrid RAG with source citations&lt;/li&gt;
&lt;li&gt;📄 Process invoices using multimodal AI&lt;/li&gt;
&lt;li&gt;⚡ Generate real-time inventory alerts&lt;/li&gt;
&lt;li&gt;🔐 Secure the platform with JWT authentication and role-based access control&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Technology Stack
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Frontend
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;React 19&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Backend
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Django 5&lt;/li&gt;
&lt;li&gt;Django REST Framework&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Database
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;PostgreSQL&lt;/li&gt;
&lt;li&gt;pgvector&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  AI
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;LangChain&lt;/li&gt;
&lt;li&gt;Hybrid RAG&lt;/li&gt;
&lt;li&gt;AI Agents&lt;/li&gt;
&lt;li&gt;Prophet Forecasting&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Infrastructure
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Celery&lt;/li&gt;
&lt;li&gt;Redis&lt;/li&gt;
&lt;li&gt;Docker&lt;/li&gt;
&lt;li&gt;GitHub Actions&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;Building SmartStock AI taught me much more than integrating an LLM into an application.&lt;/p&gt;

&lt;p&gt;Some of the biggest lessons were:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Designing AI features that solve real business problems.&lt;/li&gt;
&lt;li&gt;Building reliable agent workflows instead of simple chatbot interactions.&lt;/li&gt;
&lt;li&gt;Combining vector search with structured database queries.&lt;/li&gt;
&lt;li&gt;Managing asynchronous AI tasks using Celery and Redis.&lt;/li&gt;
&lt;li&gt;Creating production-ready APIs with Django REST Framework.&lt;/li&gt;
&lt;li&gt;Deploying and maintaining a modern full-stack application.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;🎥 YouTube Demo&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=DQJqs6bgE98" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=DQJqs6bgE98&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌐 Live Demo&lt;/p&gt;

&lt;p&gt;&lt;a href="https://smart-stock-dev.vercel.app/" rel="noopener noreferrer"&gt;https://smart-stock-dev.vercel.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Demo Account&lt;/p&gt;

&lt;p&gt;Email: &lt;a href="mailto:viewer@smartstock.ai"&gt;viewer@smartstock.ai&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Password: Viewer123!&lt;/p&gt;

&lt;p&gt;💻 GitHub Repository&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Eng-Ayman-Mohamed/SmartStock-AI" rel="noopener noreferrer"&gt;https://github.com/Eng-Ayman-Mohamed/SmartStock-AI&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;This project was developed as my graduation project during the Information Technology Institute (ITI) Full Stack Web &amp;amp; Generative AI Program.&lt;/p&gt;

&lt;p&gt;It was an incredible opportunity to explore AI engineering, backend architecture, and modern software development while building a practical product.&lt;/p&gt;

&lt;p&gt;I'm continuing to learn about Agentic AI, RAG systems, and intelligent automation, and I plan to share more technical articles about what I build and what I learn.&lt;/p&gt;

&lt;p&gt;If you have any feedback or ideas for improving SmartStock AI, I'd love to hear them!&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>django</category>
      <category>rag</category>
    </item>
  </channel>
</rss>
