Tech News
All News AI & ML Architecture DevOps Open Source Programming Team Management Testing & QA Web

Latest News

⚑ Report a Problem

Tech news from the best sources

All topics AI Gear News Tech agents ai api architecture automation beginners career database devchallenge devops discuss javascript llm machinelearning mcp opensource performance productivity programming python react security showdev tutorial typescript webdev
All EN RU
EN

Building a Robust RAG Pipeline Architecture for Production

Answer up front: A RAG pipeline architecture is a set of connected services that ingest raw documents, turn them into embeddings, store them in a vect…

ragllmpipelinelangchain
Dev.to Jul 14, 2026, 13:47 UTC
EN

RAG from Scratch with ChromaDB (No LangChain Required)

Frameworks like LangChain are great for moving fast, but they also hide a lot of what's actually happening under the hood. If you want to understand R…

aimcplangchainrag
Dev.to Jul 8, 2026, 14:39 UTC
EN

We deployed a LangChain agent for a client and it silently failed for two weeks. Here's what we built to make sure it never happens again.

Six weeks ago, a LangChain agent we'd deployed for a B2B client started failing on roughly 30% of its sessions. No exceptions. No 500s. Nothing in the…

ailangchainobservabilitypython
Dev.to Jul 4, 2026, 20:38 UTC
EN

Your AI Agent Is Leaking Data Right Now — And Every Tool Call Looks Safe

How I built the first open-source tool to catch the attacks that no guardrail sees coming We talk a lot about AI safety. Prompt injections. Jailbreaks…

claudeopenailangchainaisafety
Dev.to Jul 3, 2026, 04:32 UTC
EN

Tell your AI agent if the ground is sinking: measured ground-motion with SibFly + LangChain

Most "is this property risky?" data your agent can reach is modeled — a prediction from soil maps and flood zones. There's a different, underused sign…

aipythonlangchainapi
Dev.to Jul 1, 2026, 01:19 UTC
EN

Why Prompt Engineering Isn't Enough for Production AI Agents

TL;DR: Autonomous Agents frequently get trapped in execution loops, burning through API tokens and compute. Prompt engineering can't guarantee executi…

airustopensourcelangchain
Dev.to Jun 30, 2026, 05:25 UTC
EN

Running a Whole RAG Agent Offline: LangGraph + Ollama + Embedded Qdrant (Zero API Keys)

Most RAG tutorials open with "set your OPENAI_API_KEY ." This one doesn't need it. In Part 1 I claimed the LLM and embeddings are behind a swappable b…

langchainllmragollama
Dev.to Jun 29, 2026, 01:22 UTC
EN

Design Trade-offs: Why Hermes (and Many Popular Agents) Don't Use LangChain / LangGraph

Note: The Hermes repo contains no explicit statement saying "we don't use LangChain because…". This article works on two levels: the industry-wide com…

agentlooplangchainlanggraphsupplychainsecurity
Dev.to Jun 29, 2026, 01:08 UTC
EN

RAG Pipeline Chunking Strategies: Split Documents for Better Retrieval

Key Takeaways RAG pipeline chunking strategies determine retrieval quality more than the embedding model or vector store — most recall failures trace …

ragllmailangchain
Dev.to Jun 25, 2026, 06:05 UTC
EN

Running a LangGraph ReAct Agent in Production: OpenAI-Compatible API + Multi-Model Gateway + One-Line Tracing

Most LangGraph content stops at the notebook. You build a cute ReAct loop, it answers one question, and the article ends before the hard part: how do …

langchainllmpythonkubernetes
Dev.to Jun 23, 2026, 22:57 UTC
EN

Building a Cross-Border Price-Comparison Agent: A Live Build Log

Why a build log (and not another tutorial) Every AI shopping tutorial shows the same thing: install the SDK, call a tool, ship. None of them show what…

aimcplangchaintutorial
Dev.to Jun 23, 2026, 00:37 UTC
EN

How an AI Agent Pays $0.01 for Live SEC Data — Without an API Key

How an AI Agent Pays $0.01 for Live SEC Data — Without an API Key AI agents need real-world data to be useful. The problem: most data providers requir…

ailangchainweb3typescript
Dev.to Jun 22, 2026, 18:21 UTC
EN

LangGraph Multi-Agent Tutorial: Build AI Agent Workflows with Real Examples

🚀 LangGraph Multi-Agent Tutorial: Build AI Agent Workflows with Real Examples 🧠 Introduction Most AI agent systems fail not because the model is weak …

aiwebdevlangchainmachinelearning
Dev.to Jun 22, 2026, 15:24 UTC
EN

Orchestrating AI: LangChain Framework Abstraction vs. Pure Native Code

When building prototypes with Generative AI, velocity is everything. Developers want to stitch together prompts, text splitters, vector stores, and mo…

ailangchainllm
Dev.to Jun 21, 2026, 19:47 UTC
EN

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 -…

langchainainodeagents
Dev.to Jun 16, 2026, 20:31 UTC
EN

Agent Series (20): Harness in Production — From Single File to Reusable Package

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…

aiagentslangchainpython
Dev.to Jun 14, 2026, 03:50 UTC
EN

LangChain + Chroma: Multi-turn RAG Memory and Automated Testing That Turned 2-Hour Bugs Into 5-Minute Fixes

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…

pythonraglangchainchroma
Dev.to Jun 7, 2026, 01:06 UTC
EN

Build Your Own "Longevity Scientist": A Paper-to-Action Agent using LangGraph & Mistral-7B

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…

machinelearningpythonbiohackinglangchain
Dev.to Jun 6, 2026, 00:09 UTC
EN

RAG with OpenAI Embeddings, pgvector and LangChain

Retrieval-Augmented Generation (RAG) is a practical pattern: store knowledge as embeddings, retrieve the most relevant chunks with semantic search, th…

openairagembeddingslangchain
Dev.to Jun 2, 2026, 22:25 UTC
EN

How to Build an AI Resume Builder with LangChain and Node.js

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…

ailangchainnodeopenai
Dev.to Jun 2, 2026, 21:21 UTC
EN

Agent Series (10): MCP Protocol — Standardizing the Tool Ecosystem

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……

aiagentslangchainfastmcp
Dev.to Jun 2, 2026, 02:15 UTC
EN

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, …

langchainpythonsecuritytutorial
Dev.to May 29, 2026, 16:28 UTC
EN

LangChain Interrupt: Agents Moved Into the Runtime | Focused

Interrupt felt different this year. Less model worship. More runtime. Instead of another round of model worship, the more useful conversations at the …

programminglangchainai
Dev.to May 28, 2026, 04:06 UTC
EN

Agent Series (3): Plan-and-Solve — Think First, Then Act

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…

aiagentslangchainllm
Dev.to May 24, 2026, 01:20 UTC
EN

How to Build a Human-in-the-Loop AI Agent with LangChain & LangGraph

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…

langchainaiagentslanggraph
Dev.to May 22, 2026, 08:43 UTC
EN

Three Design Decisions That Shaped the Enterprise RAG Retrieval Pipeline

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…

ailangchainvectordatabaserag
Dev.to May 21, 2026, 16:36 UTC
EN

5 silent failure patterns which I found analyzing 50+ real agent traces

After analyzing over 50 real production agent traces from developers building with LangChain, AutoGen, and custom agents, I found out that most agent …

langchainllmagentspython
Dev.to May 19, 2026, 12:37 UTC
EN

How to Make Your AI Agent Earn Real Money — Mercatai Integration Guide

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 …

aipythoncrewailangchain
Dev.to May 18, 2026, 11:25 UTC
EN

5 Reasons Your RAG System Will Fail in Production (And the Patterns I Use to Fix Each One)

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…

airaglangchainmachinelearning
Dev.to May 17, 2026, 19:15 UTC
EN

RAG Series (17): Agentic RAG — Giving the Agent Control Over Retrieval

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…

airagragaslangchain
Dev.to May 17, 2026, 05:24 UTC

© Tech News — Headline Aggregator

Sitemap Legal Notice Privacy Terms Copyright / Removal DSA Contact

Leaving the site

You are about to open an external website:

Continue →