Best of LangchainJanuary 2026

  1. 1
    Article
    Avatar of mondaymonday Engineering·17w

    AI Agents at work: real-time platform insights in Slack

    Monday.com built an AI-powered Slack bot to help engineers monitor platform health and access real-time insights without leaving Slack. The solution uses LLM agents connected via Model Context Protocol (MCP) to query microservice data, with LangChain handling agent logic. Key challenges included preventing LLM hallucinations by pre-computing statistics server-side rather than letting the model calculate, tuning temperature parameters to reduce randomness, and carefully scoping the bot's capabilities. The team later added human-in-the-loop approval for data modifications and supervisor agent patterns for complex workflows. The bot now saves hours by automating repetitive queries about blocked users and service status.

  2. 2
    Article
    Avatar of langchainLangChain·18w

    In software, the code documents the app. In AI, the traces do.

    AI agents shift the source of truth from code to runtime traces because decision logic happens inside the model, not in your codebase. Unlike traditional software where code documents behavior deterministically, agent code is just scaffolding that orchestrates LLM calls. This fundamental change means debugging becomes trace analysis, testing requires continuous evals in production, performance optimization focuses on decision patterns rather than algorithms, and collaboration moves to observability platforms. Without structured tracing to capture reasoning chains, tool calls, and decision points, you're working blind since the actual intelligence lives in traces, not code.

  3. 3
    Article
    Avatar of langchainLangChain·17w

    How Remote uses LangChain and LangGraph to onboard thousands of customers with AI

    Remote built a Code Execution Agent using LangChain and LangGraph to automate customer data migrations during onboarding. The system separates LLM reasoning from code execution: models decide what transformations to perform, while Python code in a WebAssembly sandbox handles actual data processing. This hybrid approach bypasses context window limitations and hallucination risks by keeping large datasets outside the LLM's context. The agent transforms diverse HR and payroll data formats (CSV, Excel, SQL exports) into standardized JSON schemas, reducing migration time from days to hours while maintaining accuracy and auditability for compliance-critical operations.