DPDarshan Pawarindarshan-pawar.hashnode.dev·Jul 19 · 4 min readWhere RAG Fails: Understanding the Limitations of Retrieval-Augmented GenerationEvery LLM has knowledge cut off date after this date ai, LLM don't know the data after this date so question how LLMs know the current data like who win the today's football match this solves RAG (Ret01A
DPDarshan Pawarindarshan-pawar.hashnode.dev·Jul 1 · 2 min readHow LLMs Work: What Happens After You Enter a Prompt?You know what happen when you send a prompt to an LLM. it process the prompt. How LLM send the response back. When you send the prompt to LLM. LLM break it into small small chunks these chunks called 00
DPDarshan Pawarindarshan-pawar.hashnode.dev·Apr 22 · 6 min readBeyond the CLI: An Investigator's Journey into the Linux As full-stack developers, we spent most of time living application layer writing server logic, designing schemas, and building user interfaces. We often treat the underlying Linux server as a magical 00
DPDarshan Pawarindarshan-pawar.hashnode.dev·Mar 26 · 3 min readJavaScript Map & Set — Modern Data Structures ExplainedWhat is a Map? 👉 A Map is a collection of key-value pairs Just like objects, but more powerful Example const user = new Map() user.set("name", "Rohan") user.set("age", 22) console.log(user.get("na00
DPDarshan Pawarindarshan-pawar.hashnode.dev·Mar 26 · 2 min readThe new Keyword in JavaScript — How Objects Are CreatedWhat Does the new Keyword Do? 👉 The new keyword is used to create a new object from a constructor function It automates several steps behind the scenes. Constructor Functions 👉 A constructor functi00