<?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>Forem: Akash </title>
    <description>The latest articles on Forem by Akash  (@akash_divinor).</description>
    <link>https://forem.com/akash_divinor</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%2F3585874%2Fe346f647-378c-4cd5-b3b5-51fcc86439f3.jpg</url>
      <title>Forem: Akash </title>
      <link>https://forem.com/akash_divinor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/akash_divinor"/>
    <language>en</language>
    <item>
      <title>“One Journey Ends, Another Begins — My Hacktoberfest 2025 Story”</title>
      <dc:creator>Akash </dc:creator>
      <pubDate>Fri, 31 Oct 2025 17:42:23 +0000</pubDate>
      <link>https://forem.com/akash_divinor/one-journey-ends-another-begins-my-hacktoberfest-2025-story-7e1</link>
      <guid>https://forem.com/akash_divinor/one-journey-ends-another-begins-my-hacktoberfest-2025-story-7e1</guid>
      <description>&lt;p&gt;Just wrapped up my Hacktoberfest project using MindsDB and Streamlit — built a CRM Semantic Search AI app! 😄&lt;br&gt;
If anyone’s into open source + AI, would love feedback on my PR: &lt;a href="https://github.com/mindsdb/mindsdb/pull/11828" rel="noopener noreferrer"&gt;Hacktoberfest 2025 PR – Add CRM Semantic Search use case (MindsDB)&lt;/a&gt;&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
      <category>mindsdb</category>
      <category>opensource</category>
      <category>ai</category>
    </item>
    <item>
      <title>"My Open Source Journey"</title>
      <dc:creator>Akash </dc:creator>
      <pubDate>Tue, 28 Oct 2025 17:28:54 +0000</pubDate>
      <link>https://forem.com/akash_divinor/my-open-source-journey-2bld</link>
      <guid>https://forem.com/akash_divinor/my-open-source-journey-2bld</guid>
      <description>&lt;p&gt;&lt;strong&gt;From Idea to AI-Powered CRM: How I Built a Semantic Search App with MindsDB + Ollama&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Introduction
&lt;/h2&gt;

&lt;p&gt;A few weeks ago, I set out on a challenge — to bring AI intelligence into everyday CRM systems.&lt;/p&gt;

&lt;p&gt;The idea was simple:&lt;/p&gt;

&lt;p&gt;“What if customer support agents could ask their CRM questions in plain English — and get meaningful, AI-generated answers instantly?”&lt;/p&gt;

&lt;p&gt;That idea became my project: AI-Powered CRM Semantic Search, built using MindsDB and Ollama.&lt;/p&gt;

&lt;p&gt;It wasn’t just another coding exercise — it was part of the MindsDB AI Use Case Contribution Track, and it completely changed how I see AI integrations, local LLMs, and real-world data workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 The Problem That Sparked It
&lt;/h2&gt;

&lt;p&gt;Traditional CRM systems are powerful, but they make humans work hard.&lt;br&gt;
Data is buried inside multiple tables — leads, tickets, customer notes, and chat logs.&lt;/p&gt;

&lt;p&gt;Imagine being a support agent trying to find answers fast while a customer waits.&lt;br&gt;
A keyword search like “refund” or “address change” gives random results with no real context.&lt;/p&gt;

&lt;p&gt;That’s when I realized:&lt;/p&gt;

&lt;p&gt;“CRM search needs to think like a human, not like a database.”&lt;/p&gt;

&lt;p&gt;So, I decided to build semantic search — an AI layer that understands intent, not just keywords.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧩 The Building Blocks
&lt;/h2&gt;

&lt;p&gt;I wanted this to be practical — lightweight, local, and privacy-first.&lt;br&gt;
Here’s what powered it:&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%2Fqkbigz70w1028aqowmyx.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%2Fqkbigz70w1028aqowmyx.png" alt=" " width="800" height="427"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚙️ How It Works
&lt;/h2&gt;

&lt;p&gt;User → Streamlit App (ask query)&lt;br&gt;
        ↓&lt;br&gt;
     MindsDB (semantic reasoning)&lt;br&gt;
        ↓&lt;br&gt;
   Ollama (generate AI response)&lt;br&gt;
        ↓&lt;br&gt;
  CRM Database (data retrieval)&lt;/p&gt;

&lt;p&gt;When a user types a query like&lt;/p&gt;

&lt;p&gt;“My refund has been delayed for 3 weeks, what should I do?”&lt;/p&gt;

&lt;p&gt;MindsDB performs a semantic search on the CRM database, finds the relevant records, and passes them to Ollama.&lt;br&gt;
The local model then generates a context-aware reply — all running completely offline.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✨ What Makes It Special
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Local-first execution: No API keys or external dependencies&lt;/li&gt;
&lt;li&gt;AI-driven suggested replies: Smart answers generated from real CRM data&lt;/li&gt;
&lt;li&gt;Semantic search: Understanding intent, not just keywords&lt;/li&gt;
&lt;li&gt;CSV upload: Dynamic CRM dataset retraining and ingestion&lt;/li&gt;
&lt;li&gt;Simple UI: Streamlit-based interface anyone can use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🖥️ Demo Snapshot
&lt;/h2&gt;

&lt;p&gt;When I first saw the system respond intelligently to a customer query, it felt surreal.&lt;br&gt;
A plain text query turned into a structured, empathetic AI reply.&lt;/p&gt;

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

&lt;p&gt;User: “My refund has been delayed for 3 weeks. What should I do?”&lt;br&gt;
AI Reply: “I apologize for the delay. Several refund cases, including yours, are pending. Please contact support to expedite your refund.”&lt;/p&gt;

&lt;p&gt;It felt like watching a CRM come alive.&lt;/p&gt;

&lt;h2&gt;
  
  
  💭 What This Project Taught Me
&lt;/h2&gt;

&lt;p&gt;This project was more than a technical build — it was a personal transformation.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I learned how MindsDB bridges SQL and AI, turning queries into intelligent actions.&lt;/li&gt;
&lt;li&gt;I integrated Ollama’s local LLMs to preserve privacy while maintaining performance.&lt;/li&gt;
&lt;li&gt;I explored semantic search and RAG for context-aware systems.&lt;/li&gt;
&lt;li&gt;Most importantly, I discovered how data and empathy can come together to improve customer experience.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every time I refined a prompt or optimized a query, I realized that building with AI isn’t just about code — it’s about designing systems that understand humans better.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔮 Next Steps
&lt;/h2&gt;

&lt;p&gt;The journey doesn’t stop here. I’m planning to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Add a vector database (FAISS / Chroma) for faster similarity search&lt;/li&gt;
&lt;li&gt;Implement a full RAG pipeline for improved context retrieval&lt;/li&gt;
&lt;li&gt;Integrate with real-time CRM APIs like HubSpot or Salesforce&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📦 Repository&lt;/p&gt;

&lt;p&gt;📂 🔗 GitHub: &lt;a href="https://github.com/ak4shravikumar/AI_POWERED_CRM" rel="noopener noreferrer"&gt;AI_POWERED_CRM&lt;/a&gt;&lt;/p&gt;

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

&lt;p&gt;When I started this project, I wanted to learn MindsDB.&lt;br&gt;
But I ended up learning how AI, data, and community can spark real innovation.&lt;/p&gt;

&lt;p&gt;This project ignited my passion for open-source contribution — it pushed me to focus, stay consistent, and build with purpose.&lt;br&gt;
It also showed me that you don’t need massive infrastructure to make an impact — you just need curiosity, courage, and commitment to keep experimenting.&lt;/p&gt;

&lt;p&gt;If you’re passionate about AI + data + open-source, explore MindsDB.&lt;br&gt;
You’ll discover what I did — that it’s not just a platform, it’s a gateway to building meaningful AI systems that solve real problems.&lt;/p&gt;

&lt;h2&gt;
  
  
  👋 About the Author
&lt;/h2&gt;

&lt;p&gt;Hi! I’m Akash, a recent Computer Science graduate who’s deeply interested in AI, open-source, and data-driven applications.&lt;/p&gt;

&lt;p&gt;Building this project was my starting point in exploring open source seriously — it helped me gain confidence, improve my skills, and connect with inspiring developer communities like MindsDB.&lt;/p&gt;

&lt;p&gt;I’m currently focused on contributing to open-source projects, learning advanced AI workflows, and preparing for my first full-time opportunity in tech.&lt;/p&gt;

&lt;p&gt;Let’s connect and collaborate! 🚀&lt;br&gt;
🔗  GitHub: &lt;a href="https://github.com/ak4shravikumar" rel="noopener noreferrer"&gt;@ak4shravikumar&lt;/a&gt;&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
      <category>opensource</category>
      <category>ai</category>
      <category>mindsdb</category>
    </item>
  </channel>
</rss>
