@lowercasebryan

363 posts

@lowercasebryan

@lowercasebryan

@lower_case_b

Katılım Aralık 2024
780 Takip Edilen27 Takipçiler
@lowercasebryan retweetledi
Arthur
Arthur@UncannyOS·
CopilotKit just gave the agent stack its third open-source layer. > MCP lets agents use tools > A2A lets agents talk to other agents > AG-UI lets agents work with people inside software
Atai Barkai@ataiiam

We've raised $27M to build @CopilotKit — the Agentic Frontend Stack connecting humans & agents. Because all UI will be AI. Co-led by Glilot Capital, NfX and SignalFire.

English
3
6
25
4K
@lowercasebryan retweetledi
Viv
Viv@Vtrivedy10·
I detected a bad Agent action, what do I do about it? this is pretty much the main question that will power the future’s Human+Agent driven improvement loops Gather data -> Mine Errors -> Find out which piece(s) of the agent is contribute to this behavior -> Apply Fix -> Test -> Loop The most important boundary in agents is the context window, it’s the box on which all LLM computation actually happens. The first thing you want to try is optimizing context engineering. No model can solve an issue without the necessary information From there work backwards all the way to swapping out or adding a model or The loop is driven by running agents, Tracing + Monitoring them, and gathering feedback to classify, understand, fix, and test errors at scale Every piece of data an Agent produces is a potential avenue to improve it, the dream is to help every team turn that data into actionable edits to improve agents over time and at scale
Viv tweet media
Harrison Chase@hwchase17

x.com/i/article/2051…

English
4
13
73
5.7K
@lowercasebryan retweetledi
Harrison Chase
Harrison Chase@hwchase17·
deepagents you can run with a "virtual filesystem" lets do lots of great context engineering tricks, without requiring an actual sandbox environment!
Rahul Rane@rahulvrane

@hwchase17 Where there's struggle is all of these harnesses require a disc or access to bash or something like that. If there's a way to run them a headless way, then that would be awesome .. maybe ive missed something

English
11
4
55
8.6K
@lowercasebryan retweetledi
LangChain
LangChain@LangChain·
Want to run the same harness across multiple interfaces? Try ACP. Deep Agents ships with it out of the box.
Mason Daugherty@masondrxy

open-weight LLMs have come a long way on agent tasks! but the harness you wrap them in matters just as much as the model itself, and arguably the interface you use to drive that harness matters even more. dev workflows are deeply personal. what works well for one developer may hinder another, so it's difficult to converge on a single UX that isn't either compromising or too generalized (e.g. CLI vs. TUI vs. GUI vs. IDE extension) while it doesn't come without drawbacks, ACP a solid stopgap for running the same harness across multiple interfaces. pick your frontend, keep your agent. deepagents ships with this out of the box -- two ways to plug it in: - deepagents-acp is our standalone ACP server to serve *any* agent - `deepagents-cli --acp` to use our existing CLI agent over ACP point any ACP-compatible client at it and you've got the same deepagents harness, your choice of open-weight model & provider, and your choice of interface. some popular exemplars: - `toad` is an agent-agnostic TUI that ships deepagents support built-in, made possible via ACP github.com/batrachianai/t… (@willmcgugan @textualizeio) - you can use deepagents directly in any modern IDE, see this blog post from @jetbrains coauthored by our very own @Hacubu: blog.jetbrains.com/ai/2026/04/usi…) the model is yours to pick. the interface is yours to pick. the harness shouldn't be the thing that locks you in.

English
3
7
31
6.4K
@lowercasebryan retweetledi
Harrison Chase
Harrison Chase@hwchase17·
agent observability is great. but in order to use it to power an agent improvement loop, you need to be collecting (and even generating) feedback data inside your agent observability platform
Harrison Chase tweet media
Harrison Chase@hwchase17

x.com/i/article/2051…

English
11
6
49
4.9K
Hubert Thieblot
Hubert Thieblot@hthieblot·
You just became a VC. You’ve got $1M to deploy. Who gets your money? Tag them. Or back yourself.
English
275
7
369
27.8K
@lowercasebryan retweetledi
LangChain
LangChain@LangChain·
Build agents with LangChain + @browserbase. Give your Deep Agents search, fetch, and browser subagents to access the full web. All with full observability with the Browserbase dashboard.
English
12
22
185
48.4K
@lowercasebryan retweetledi
Harrison Chase
Harrison Chase@hwchase17·
one future trend i'm very excited by: models getting good enough where they can power agents that browse the web deepagents + @browserbase is a glimpse of that future See the full example here: github.com/browserbase/in…
Harrison Chase tweet media
LangChain@LangChain

Build agents with LangChain + @browserbase. Give your Deep Agents search, fetch, and browser subagents to access the full web. All with full observability with the Browserbase dashboard.

English
13
19
185
22K
@lowercasebryan retweetledi
cat
cat@_catwu·
Claude Security is now in public beta, built into Claude Code on the web. Point it at a repo, get validated vulnerability findings, and fix them in the same place you're already writing code claude.com/product/claude…
English
21
24
425
48.8K
@lowercasebryan retweetledi
LangChain
LangChain@LangChain·
Should you use a sandbox for your agent? @ListenLabs Co-Founder & CTO @florian_jue shared what can go wrong on the Max Agency podcast hosted by @hwchase17 .
English
9
4
38
10.6K
@lowercasebryan retweetledi
@lowercasebryan retweetledi
LangChain OSS
LangChain OSS@LangChain_OSS·
Human in the loop (HITL) support is critical for sensitive workflows. We just shipped an update to our HITL middleware to support "ask user" style flows!
LangChain OSS tweet media
Sydney Runkle@sydneyrunkle

most of the time, you want an agent loop to run uninterrupted. that's where the utility comes from! but some decisions shouldn't be delegated to the agent. two situations come up consistently: 1/ before a consequential action, like sending an email, executing a transaction, or deleting files, you want to see exactly what the agent is about to do. approve it, edit it, or push back with feedback so it can revise and try again. 2/ when the agent hits a judgment call it can't resolve alone. not because it's missing a tool, because the answer depends on your preference. "which config file should i modify?" or "should this go to staging or production?" your answer gets fed directly back into the run. here's the part that matters for production: these pauses can last indefinitely. seconds, hours, days. that's only possible if the runtime persists state across the response gap. when the human responds, whenever that is, the agent reloads full context and continues from exactly where it stopped. in langgraph, interrupt() saves state to a checkpointer and surfaces a payload to the caller. command(resume=...) reloads it and picks up execution. langchain and deep agents build on top of those primitives with HITL middleware, so instead of wiring this yourself, you attach HITL policies directly to tool calls. #interrupt-decision-types" target="_blank" rel="nofollow noopener">docs.langchain.com/oss/python/lan…

English
0
6
23
1.7K
@lowercasebryan retweetledi
Sydney Runkle
Sydney Runkle@sydneyrunkle·
new mode for LangChain's human in the loop middleware: respond instead of running a tool, you can return the human's interrupt response directly as the tool's output handy for "ask user" stubs or headless tools that depend on direct user input! docs.langchain.com/oss/python/lan…
Sydney Runkle tweet media
English
8
11
85
15.7K
@lowercasebryan retweetledi
Harrison Chase
Harrison Chase@hwchase17·
.@MadrigalPharma is living in the (agentic) future. If you haven't heard of Madrigal, they are a pioneering biopharma company. Some months ago, they set out to solve the problem of integrating, searching, and synthesizing information from diverse datasets at scale. This lead to the creation of an enterprise multi-agent platform They wrote about their journey in a case study on our blog: langchain.com/blog/customers… My favorite part: highlighting observability as the step to close the gap between prototype and production. We see the importance of observability daily - to help give insights to debug and improve your systems. This iteration loop is a key part of building reliable agents, and I'm thrilled to share how Madrigal expertly used it
English
6
6
25
7.5K
@lowercasebryan retweetledi
Harrison Chase
Harrison Chase@hwchase17·
🚀DeepAgents deploy is a simple, configuration driven way to get an agent harness deployed to the cloud deepagents.toml is the file that configures it. It has four sections: - agent - sandbox - auth -frontend Here's what each one does 🧵
Harrison Chase tweet media
English
8
16
85
12.6K
@lowercasebryan retweetledi
Sydney Runkle
Sydney Runkle@sydneyrunkle·
serving multiple users from a single agent deployment introduces three distinct problems. luckily, langsmith's agent server has a solution for each! 1. data isolation: your @auth.authenticate handler tags every resource with ownership on write, filters on read. 2. delegated credentials: agent auth handles the oauth flow so the agent can act as the user across runs. 3. operator access: rbac controls who on your team can deploy, trace, or change auth policies. #multi-tenancy" target="_blank" rel="nofollow noopener">docs.langchain.com/oss/python/dee…
Sydney Runkle tweet media
English
2
13
61
6.9K
@lowercasebryan retweetledi
LangChain
LangChain@LangChain·
Until today, Deep Agents shipped with a single set of prompts, tools, and middleware aimed to work well across all Large Language Models. With the launch of harness profiles, you can now control these parameters on a per-model basis.
LangChain OSS@LangChain_OSS

New in Deep Agents: Harness Profiles. langchain.com/blog/tuning-de… ✅ Model-specific profiles to adjust prompts, tools, and middleware. 📦 Profiles for @OpenAI, @Anthropic, and @Google models out of the box. Currently available in Python, and coming soon to TypeScript.

English
4
4
79
12.9K
@lowercasebryan retweetledi
LangChain OSS
LangChain OSS@LangChain_OSS·
New in Deep Agents: Harness Profiles. langchain.com/blog/tuning-de… ✅ Model-specific profiles to adjust prompts, tools, and middleware. 📦 Profiles for @OpenAI, @Anthropic, and @Google models out of the box. Currently available in Python, and coming soon to TypeScript.
LangChain OSS tweet media
English
5
13
57
16.9K