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 Web 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…
We live in an era where scientific breakthroughs are published faster than we can read them. For the biohacking community, the gap between a new PubMe…
Retrieval-Augmented Generation (RAG) is a practical pattern: store knowledge as embeddings, retrieve the most relevant chunks with semantic search, th…
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, …
Interrupt felt different this year. Less model worship. More runtime. Instead of another round of model worship, the more useful conversations at the …
В течение последних двух лет мы проделали большую работу по изданию неустаревающих книг, связанных с проектированием и развитием API. Как известно, са…
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…
AI agents are powerful — but sometimes too powerful. What if your agent is about to send an email on your behalf and you want a chance to say "wait, h…
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…
After analyzing over 50 real production agent traces from developers building with LangChain, AutoGen, and custom agents, I found out that most agent …
Your AI agent can write code, research topics, translate documents, and analyze data. But can it pay its own API bills? Now it can. Mercatai is a B2B …
The 80% Problem Most RAG demos look magical. You drop in 10 PDFs, ask 3 questions, get clean answers. Ship it. Then production hits. The document corp…
The Silent Failure of Pipeline RAG Every article in this series has been trying to answer the same question: how do we make retrieval better? Better c…
I’ve been working on cerone-openclaw-plugin, a native OpenClaw plugin that checks tool calls with Cerone before execution. (Cerone is an AI agent runt…
When building AI applications with LangChain, your chat history usually lives as a list of LangChain message objects like SystemMessage , HumanMessage…
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…
🚨 The Problem: Context Fragmentation Imagine a 50-page legal contract. If you chunk it into tiny 200-character pieces, one chunk might say: "The liabi…
LangChain ChromaDB Metadata Priority Injection Vulnerability Summary LangChain's Chroma integration allows attackers to manipulate document retrieval …
langchain has an open github issue (35357) requesting structured compliance audit logging for eu ai act article 12. the issue is still open. framework…
I spent the last couple of days building something I kept wishing existed A platform that takes your organization's internal data such as docs, wikis,…
AI agents are rapidly moving from experimental prototypes to production infrastructure. Developers are no longer just building chatbots. They’re build…
A Blind Spot in Vector Search Suppose your knowledge base contains a document with this sentence: "For Chinese scenarios, we recommend BAAI/bge-large-…
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…