• bitcoinBitcoin(BTC)$67,826.00-4.55%
  • ethereumEthereum(ETH)$1,981.46-4.86%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$627.79-2.94%
  • rippleXRP(XRP)$1.37-2.92%
  • usd-coinUSDC(USDC)$1.000.01%
  • solanaSolana(SOL)$84.28-5.00%
  • tronTRON(TRX)$0.283743-0.85%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.02-1.05%
  • dogecoinDogecoin(DOGE)$0.090558-3.63%
  • whitebitWhiteBIT Coin(WBT)$54.27-0.66%
  • USDSUSDS(USDS)$1.000.00%
  • cardanoCardano(ADA)$0.258259-4.92%
  • bitcoin-cashBitcoin Cash(BCH)$448.77-2.41%
  • leo-tokenLEO Token(LEO)$9.060.12%
  • HyperliquidHyperliquid(HYPE)$30.40-1.45%
  • moneroMonero(XMR)$350.60-3.29%
  • chainlinkChainlink(LINK)$8.80-5.21%
  • Ethena USDeEthena USDe(USDE)$1.000.01%
  • CantonCanton(CC)$0.153145-1.20%
  • stellarStellar(XLM)$0.151806-4.65%
  • USD1USD1(USD1)$1.00-0.01%
  • RainRain(RAIN)$0.009067-2.97%
  • daiDai(DAI)$1.000.03%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • hedera-hashgraphHedera(HBAR)$0.096469-3.60%
  • litecoinLitecoin(LTC)$53.63-3.60%
  • avalanche-2Avalanche(AVAX)$9.01-4.64%
  • suiSui(SUI)$0.90-7.47%
  • zcashZcash(ZEC)$207.78-8.20%
  • the-open-networkToncoin(TON)$1.340.44%
  • shiba-inuShiba Inu(SHIB)$0.000005-3.65%
  • crypto-com-chainCronos(CRO)$0.075148-3.33%
  • tether-goldTether Gold(XAUT)$5,146.981.13%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.098433-5.32%
  • MemeCoreMemeCore(M)$1.512.42%
  • pax-goldPAX Gold(PAXG)$5,185.211.17%
  • polkadotPolkadot(DOT)$1.50-2.85%
  • uniswapUniswap(UNI)$3.82-4.75%
  • mantleMantle(MNT)$0.68-3.14%
  • Pi NetworkPi Network(PI)$0.22914613.18%
  • okbOKB(OKB)$101.704.23%
  • Circle USYCCircle USYC(USYC)$1.120.00%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Falcon USDFalcon USD(USDF)$1.000.04%
  • AsterAster(ASTER)$0.69-2.34%
  • BittensorBittensor(TAO)$177.82-5.28%
  • Global DollarGlobal Dollar(USDG)$1.00-0.01%
  • aaveAave(AAVE)$110.14-7.01%
  • SkySky(SKY)$0.070123-8.31%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

LangChain’s CEO argues that better models alone won’t get your AI agent to production

March 6, 2026
in AI & Technology
Reading Time: 3 mins read
A A
LangChain’s CEO argues that better models alone won’t get your AI agent to production
ShareShareShareShareShare

As models get smarter and more capable, the “harnesses” around them must also evolve.

YOU MAY ALSO LIKE

Anthropic launches Claude Marketplace, giving enterprises access to Claude-powered tools from Replit, GitLab, Harvey and more

Valve doesn’t sound confident the Steam Machine will ship in 2026

This “harness engineering” is an extension of context engineering, says LangChain co-founder and CEO Harrison Chase in a new VentureBeat Beyond the Pilot podcast episode. Whereas traditional AI harnesses have tended to constrain models from running in loops and calling tools, harnesses specifically built for AI agents allow them to interact more independently and effectively perform long-running tasks.

Chase also weighed in on OpenAI’s acquisition of OpenClaw, arguing that its viral success came down to a willingness to “let it rip” in ways that no major lab would — and questioning whether the acquisition actually gets OpenAI closer to a safe enterprise version of the product.

“The trend in harnesses is to actually give the large language model (LLM) itself more control over context engineering, letting it decide what it sees and what it doesn’t see,” Chase says. “Now, this idea of a long-running, more autonomous assistant is viable.”

Tracking progress and maintaining coherence

While the concept of allowing LLMs to run in a loop and call tools seems relatively simple, it’s difficult to pull off reliably, Chase noted. For a while, models were “below the threshold of usefulness” and simply couldn’t run in a loop, so devs used graphs and wrote chains to get around that. Chase pointed to AutoGPT — once the fastest-growing GitHub project ever — as a cautionary example: same architecture as today’s top agents, but the models weren’t good enough yet to run reliably in a loop, so it faded fast.

But as LLMs keep improving, teams can construct environments where models can run in loops and plan over longer horizons, and they can continually improve these harnesses. Previously, “you couldn’t really make improvements to the harness because you couldn’t actually run the model in a harness,” Chase said.

LangChain’s answer to this is Deep Agents, a customizable general-purpose harness.

Built on LangChain and LangGraph, it has planning capabilities, a virtual filesystem, context and token management, code execution, and skills and memory functions. Further, it can delegate tasks to subagents; these are specialized with different tools and configurations and can work in parallel. Context is also isolated, meaning subagent work doesn’t clutter the main agent’s context, and large subtask context is compressed into a single result for token efficiency.

All of these agents have access to file systems, Chase explained, and can essentially create to-do lists that they can execute on and track over time.

“When it goes on to the next step, and it goes on to step two or step three or step four out of a 200 step process, it has a way to track its progress and keep that coherence,” Chase said. “It comes down to letting the LLM write its thoughts down as it goes along, essentially.”

He emphasized that harnesses should be designed so that models can maintain coherence over longer tasks, and be “amenable” to models deciding when to compact context at points it determines is “advantageous.”

Also, giving agents access to code interpreters and BASH tools increases flexibility. And, providing agents with skills as opposed to just tools loaded up front allows them to load information when they need it. “So rather than hard code everything into one big system prompt,” Chase explained, “you could have a smaller system prompt, ‘This is the core foundation, but if I need to do X, let me read the skill for X. If I need to do Y, let me read the skill for Y.'”

Essentially, context engineering is a “really fancy” way of saying: What is the LLM seeing? Because that’s different from what developers see, he noted. When human devs can analyze agent traces, they can put themselves in the AI’s “mindset” and answer questions like: What is the system prompt? How is it created? Is it static or is it populated? What tools does the agent have? When it makes a tool call, and gets a response back, how is that presented?

“When agents mess up, they mess up because they don’t have the right context; when they succeed, they succeed because they have the right context,” Chase said. “I think of context engineering as bringing the right information in the right format to the LLM at the right time.”

Listen to the podcast to hear more about:

  • How LangChain built its stack: LangGraph as the core pillar, LangChain at the center, Deep Agents on top.

  • Why code sandboxes will be the next big thing.

  • How a different type of UX will evolve as agents run at longer intervals (or continuously).

  • Why traces and observability are core to building an agent that actually works.

You can also listen and subscribe to Beyond the Pilot on Spotify, Apple or wherever you get your podcasts.

Credit: Source link

ShareTweetSendSharePin

Related Posts

Anthropic launches Claude Marketplace, giving enterprises access to Claude-powered tools from Replit, GitLab, Harvey and more
AI & Technology

Anthropic launches Claude Marketplace, giving enterprises access to Claude-powered tools from Replit, GitLab, Harvey and more

March 7, 2026
Valve doesn’t sound confident the Steam Machine will ship in 2026
AI & Technology

Valve doesn’t sound confident the Steam Machine will ship in 2026

March 6, 2026
Netflix’s version of Overcooked lets you play as Huntr/x
AI & Technology

Netflix’s version of Overcooked lets you play as Huntr/x

March 6, 2026
Google PM open-sources Always On Memory Agent, ditching vector databases for LLM-driven persistent memory
AI & Technology

Google PM open-sources Always On Memory Agent, ditching vector databases for LLM-driven persistent memory

March 6, 2026
Next Post
Dudes Don’t Even Care About Weddings

Dudes Don't Even Care About Weddings

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
Michael Whatley wins Republican North Carolina Senate primary

Michael Whatley wins Republican North Carolina Senate primary

March 6, 2026
US nationals urged to leave Middle East as conflict spreads – BBC

US nationals urged to leave Middle East as conflict spreads – BBC

March 3, 2026
Did Alibaba just kneecap its powerful Qwen AI team? Key figures depart in wake of latest open source release

Did Alibaba just kneecap its powerful Qwen AI team? Key figures depart in wake of latest open source release

March 4, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!