How to Add Memory Security to Your LangChain Agent in 5 Minutes
Why Your Agent's Memory Needs Security If you're building LangChain agents with persistent memory (ConversationBufferMemory, RedisChatMessageHistory, …
Tech news from the best sources
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…
ИИ может торговать на бирже в плюс — и мы это проверили в ходе эксперимента на 6 моделях. Разбираем автономного ИИ-трейдера по косточкам — архитектура…
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…
Всё началось с доклада про AI-агентов. Заинтересовало настолько, что решил написать своего на Go. Было сложно, но получилось! Делюсь опытом: LangChain…
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…
В предыдущей статье было рассмотрен способ интеграции ИИ-ассистентов в процесс торговли на бирже. Чтобы углубиться в проектирование ИИ…