惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
DataBreaches.Net
S
SegmentFault 最新的问题
P
Proofpoint News Feed
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
小众软件
小众软件
博客园 - Franky
有赞技术团队
有赞技术团队
D
Docker
T
Tailwind CSS Blog
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
V
Visual Studio Blog
宝玉的分享
宝玉的分享
爱范儿
爱范儿

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
When Manual Wins
Chaitanya Bu · 2026-05-06 · via DEV Community

Lessons from replacing a brittle chat integration with a lean, SSE-based LangChain flow

Introduction: A simple stack

Throughout my software development career, my focus has evolved from "architecture is most important" to "quality is everything" to "engineers are the backbone." While these views are different, they all share one common goal: building good software.

But there has always been one aspect that adds the most cost to the product lifecycle: deployment and maintenance. A team can build one great product, but if the architecture does not account for deployment and maintenance, that team may never build a second product. It will just keep fighting fires.

With that in mind, I started a new project to build an AI-integrated application that improves user workflows. The app must make decisions based on status, report information in a rich format, and provide a conversational interface.

For this project, I set a strict constraint: minimize the surface area. I wanted a robust analysis pipeline without the deployment tax of extra services. The goal was a clean, four-element ecosystem:

  1. The Frontend: React (TypeScript), including a conversational interface
  2. The Backend: Node.js / Express
  3. The Database: Postgres (handling data, vector embeddings and job queuing via pg-boss)
  4. The AI: A self-deployed LLM (Ollama + Qwen 2.5) for local processing and LangChain

With a tight delivery timeline, Cursor was the right tool to accelerate implementation. Cursor supported development well, until it hit a wall with the conversational interface using CopilotKit. I had to step in with more details and design guidance to successfully implement the interface.

What I tried

I did some research on the right components to implement my requirements and CopilotKit came up strong. I already had my LangChain endpoint ready and verified, so I instructed Cursor to use CopilotKit and add a chat interface to the frontend and integrate with my LangChain endpoint. Things did not work out very well and every iteration brought up new problems.

What kept breaking

  • The primary challenge was that the runtime would not recognize my LLM settings from the environment. I had to hardcode the model into the runtime code.
  • The data would not reach my LangChain endpoint. Cursor recommended an HTTP adapter and implemented it.
  • Once LangChain processed the input and responded the client interface would not recognize the content.

Since CopilotKit is being actively improved, using the latest version was the first mistake. From what I read, every version works well as long as the front end is connected directly to the runtime. But once a new intermediate layer was introduced, the integration failed.

Why I switched to manual (guided) integration

I did not want to compromise on my requirement to reduce stack spread, so I reset to a previous stable point in my code and started building a custom integration with LangChain. This required three parts:

  1. Chat interfaces
  2. LangChain interface
  3. A way to send back the response. SSE was the answer

As soon as I shifted to this design the implementation was quicker and smoother. Cursor built a chat interface with the inputs and customizations I asked for. Then the SSE layer ensured that communication between the server and client was based on standard protocols. The format translation between the client input and the LangChain interface was trivial.

This ensured that chat and tool responses transmitted to the client seamlessly. Now it was a matter of defining the protocol that would help the client choose between displaying the response as a chat message or using a client side component to display rich content. I did hit a few more challenges after that, but they were primarily due to differences in how commercial LLMs (Vertex, OpenAI) handled tools compared to local LLMs. That is a topic for another time.

Conclusion

Coding agents are amazing at speeding up development, improving test coverage, and even keeping interfaces documented. But some patterns are still too new for current agents. In this case, the limitations were easy to spot. In other cases, agents may produce code that works but introduce design choices that make long-term maintenance harder. Defining clear design criteria before implementation helps avoid those pitfalls.