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

Testing & QA

⚑ Report a Problem

Latest Testing & QA news from Tech News

All topics agents ai api architecture automation aws backend beginners career claude cybersecurity database devchallenge devops javascript llm machinelearning mcp opensource performance productivity programming python security showdev softwareengineering testing tutorial typescript webdev
All EN RU
EN

Top 5 Dev Tools Released in Late July 2026

LangChain 0.3.0 LangChain 0.3.0 is a popular AI framework that enables developers to build applications with large language models through enhanced ag…

aitoolsdevupdateslangchaintransformers
Dev.to Jul 31, 2026, 23:04 UTC
EN

Handoffs can turn one task into a 15x token bill

Handoffs are useful when a specialist agent needs to take over a task. They also make cost easier to hide, because the bill is spread across graph nod…

langgraphlangchainlangsmithmultiagentsystems
Dev.to Jul 30, 2026, 03:38 UTC
EN

Stop your Grok 4.5 agents from blowing past the context window

Long-running agents have a boring failure mode: they accumulate conversation until they hit the model's context window and fall over. xAI ships a fix …

aiagentslangchaintypescript
Dev.to Jul 24, 2026, 16:41 UTC
EN

Understanding Middleware in Deep Agents (With Runnable Examples)

If you've built even a simple AI agent, you've probably noticed that the "agent loop" itself is deceptively simple: the model gets a message, decides …

agentsmiddlewaredeepagentlangchain
Dev.to Jul 22, 2026, 12:49 UTC
EN

LangChain Advanced Patterns: Building Production-Grade AI Systems

Beyond Basic LangChain You've built a simple agent. Now scale it. Production LangChain systems require: Memory management Error handling Performance o…

langchainagentframeworkadvancedpatternsproduction
Dev.to Jul 21, 2026, 06:00 UTC
RU

LLM-wiki против RAG: Оцениваем и сравниваем

Про LLM-wiki здесь уже было несколько хороших статей ( 1 , 2 и 3 ), поэтому подробно останавливаться на идее Andrej Karpathy не буду. В двух словах: в…

llmllm-агентыwikiragоценка качестваclaude-codelangchainrag системаwilcoxon scores
Habr Jul 15, 2026, 14:19 UTC
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

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

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

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

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

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

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

AgentKit vs LangChain vs Direct HTTP — picking the right integration for paid agent APIs

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…

langchainagentkitaiwebdev
Dev.to May 14, 2026, 01:24 UTC
EN

LangChain ChromaDB Metadata Priority Injection — RAG Poisoning Vulnerability

LangChain ChromaDB Metadata Priority Injection Vulnerability Summary LangChain's Chroma integration allows attackers to manipulate document retrieval …

securitylangchainllmvulnerability
Dev.to May 10, 2026, 21:04 UTC
EN

AI Agent Frameworks Compared: LangChain vs Custom vs Agentic Systems

AI agents are rapidly moving from experimental prototypes to production infrastructure. Developers are no longer just building chatbots. They’re build…

aiagentslangchainagentaichallenge
Dev.to May 8, 2026, 09:22 UTC
EN

Deep Dive: LangChain 0.3 LCEL and How It Optimizes Claude 3.7 Calls

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

deepdivelangchainlcel
Dev.to May 7, 2026, 13:33 UTC
EN

Madrigal's "Failures as Eval Suites" Pattern and How Flow Already Provides the Infrastructure

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…

langchainlangsmithagentsvalidation
Dev.to May 6, 2026, 08:23 UTC
EN

How to Monetize Your AI Agents with LangChain and Kong

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…

ailangchainprogrammingwebdev
Dev.to May 5, 2026, 15:26 UTC
EN

Build a RAG agent with LangChain and Ollama

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…

pythonraglangchainollama
Dev.to May 5, 2026, 04:12 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 →