Building AI agents with LangChain
LangChain agents are built on LangGraph : the model calls tools in a loop until it returns a final answer. The high-level entry point is createAgent -…
Latest Testing & QA news from Tech News
LangChain agents are built on LangGraph : the model calls tools in a loop until it returns a final answer. The high-level entry point is createAgent -…
From Demo Code to a Reusable Package Article 19 used a 900-line harness_full_demo.py to demonstrate eight defense layers. That file is good for explai…
At 1 a.m., the customer group chat exploded: “Does your customer service bot have only a 7-second memory? I just gave it the order number, and the nex…
A few months back, my friend Marcus was applying for a senior backend role at a fintech company. He had five years of solid experience — distributed s…
More Tools, More Chaos After you build an Agent, the first thing you usually do is give it tools: search, code execution, database queries, API calls……
Why Your Agent's Memory Needs Security If you're building LangChain agents with persistent memory (ConversationBufferMemory, RedisChatMessageHistory, …
Where Does ReAct Hit a Wall? The previous article established ReAct's greedy strategy — each step looks at only the current state and decides the next…
Enterprise RAG — A practitioner's build log | Post 3 of 6 A retrieval pipeline has more design surface than it appears. The technology choices — vecto…
When you're plugging an LLM agent into an external API, you have three reasonable patterns: hand-rolled HTTP, AgentKit's action provider model, or Lan…
LangChain ChromaDB Metadata Priority Injection Vulnerability Summary LangChain's Chroma integration allows attackers to manipulate document retrieval …
AI agents are rapidly moving from experimental prototypes to production infrastructure. Developers are no longer just building chatbots. They’re build…
If you’ve ever watched a Claude 3.7 API call sit in a pending state for 2.1 seconds while your LangChain pipeline serializes prompts, parses outputs, …
A blog post on LangChain's site about how Madrigal Pharmaceuticals built their multi-agent AI platform caught my attention this week. Not because of t…
Say you built an AI agent and customers are starting to pay for it. Sooner or later you'll want to charge them by what they actually use, because some…
I started where a lot of us do: a LangChain RAG walkthrough. You chunk some text, embed it, retrieve top‑k chunks, and wire an LLM to answer questions…