Register and share your invite link to earn from video plays and referrals.

Viv
@Vtrivedy10
applied research @LangChain Labs, prev @awscloud, phd cs @templeuniv
1.8K Following    16.2K Followers
yup, spot on! Traces are the biggest asset for teams to improve their agents over time with Evals, Environments, & human digestible reports explaining what users want with LangSmith we obsess over tooling to help every team understand their agent traces at scale - online monitoring of every trace (custom models, Jev, super cheap small models, built-in rubrics) - clustering traces and errors into human digestible views - turning errors into evals that can be hill-climbed - and open sourcing tooling to build Harbor Environments for Evals or RL from your data we’re very “look at the data” pilled, there’s alpha hiding in there and we want to help you find it more coming soon on helping every team use their valuable Trace data for post-training 👀
Show more
Most companies aren't leveraging their most valuable asset - their traces. There’s a ton of software value to build around raw inference and models like Jev open up a whole new set of possibilities because of their architecture and how cheap they are to run. When you’re generating billions of tokens across training and production, you need to understand which failures keep happening and how often. In this example, we use a frontier model on sampled traces to build a failure taxonomy. Then, we freeze it for an annotation pass and use Jev to classify the full corpus. This way, the expensive work of figuring out what to look for doesn’t need to happen on every trace! For one annotation across 10k traces, our benchmark estimates came out to about $11 with Jev versus $479 with Haiku 4.5. The implication here is that it is a lot more practical to build scalable systems around model observability. We’re building a bunch of stuff like this in AC2 because we want customers to get more out of their inference. We are in a world where the number of tokens being produced is increasing exponentially. This only highlights the need for observability infrastructure.
Show more
Jev for RAG in almost all cases you trust the semantic matching capability of Jev more than dot product similarity very useful as the direct similarity metric in small data cases and a great reranker with big data
Show more
does everyone agree that the new Pareto Frontier for at least a few days is Luna 6 -> Opus 5.5 -> Astra 6
dream data generation agent: 1. tell agent what I need it to do 2. check if existing models already crush these tasks for near free 3. if not, Agent creates N RL tasks for this behavior 4. Audit tasks 5. Finetune very good, nearly free open model for those tasks 3 & 4 are hard
Show more
seeing a lot of interesting work on multi-agent communication patterns feel like in classic ML fashion, the simple Message Board (ie. Filesystem) will end up winning they’ll figure out optimal per-task communication patterns better than we can design for them
Show more
resharing as i do every few months: - Blender is an incredible technology - agents are getting VERY good at using it - the beautiful Oscar winning movie Flow was created almost entirely in Blender imagine the possibilities...
Show more
I've been on a Blender kick with Opus 5.5. Its better 3D modeling and vision mean you can build an entire world from a single prompt. Historically accurate San Francisco Market street in 1906, pre-earthquake
Show more
Evals & Harnesses beyond Code Mode & Pass Rate: in a Math degree, assignments & exams are largely closed book + no fancy calculator this is for good reason tooling can help you get answers, but putting constraints on your tools helps you sharpen innate skills developing reasoning skills on the underlying structure of problem solving is often more valuable to learn than how to use a tool this imo totally applies to LLM RL training & the current code mode paradigm I LOVE code mode and find it amazing how well models can use code to solve any problem, but using code as a tool is a decision on giving a model a very powerful harness to solve problems, Python is Turing Complete ofc this has tradeoffs such as not being able to solve other problems Im seeing this pretty distinctly in visual reasoning tasks that don’t have code mode, models just aren’t great at persistence or visual perception without code Maybe that’s a fine tradeoff, but AGI level should be able to do tasks without code and I bet training in harnesses without code mode will make them generally more intelligent
Show more
wow ok GPT-6 Luna pricing + DeepSWE score Luna family is amazing value for intelligence, I spam it regularly for lots of parallel review tasks new Pareto for intelligence drops every week, everyone is going to Jevon's paradox this model
Show more
Please welcome GPT-6 Sol and GPT-6 Luna to the GPT-6 universe. GPT-6 Sol and Luna build on the advances behind GPT-6 Astra, bringing much of its strengths into faster and more affordable models to support work at scale. We’ve also made caching and inference more efficient, and we’re passing the savings directly to you: 50% lower API prices for Sol and Luna compared with GPT‑5.6 promotional pricing.
Show more
pitcure also training on rubrics/tasks like Frontier Code that penalize out-of-scope changes (even good ones that fix other things). their decision to penalize totally makes sense imo, but maybe sometimes you don't want that but it'll end up being a learned behavior in the model because it was rewarded/penalized for it broader point is that the shape of Task/Reward during induces model behavior afterwards, and it's super hard to figure out where behavior came from across thousands of tasks & rubrics looking at the trace + task data jointly with an agent is a good start to try reverse engineering where weird behavior could come from ^ this could be a fun bench itself if it was reliable
Show more
@xeophon @_ueaj it's cause frontiercode penalizes out of scope changes, even if the changes are good
“The missing piece is the synthetic data recipe. And our experiments strongly point in the same direction.” to make a model good at a Task, make/curate high quality data for that Task there’s no hidden magic (which is a good thing), it’s just a hard, time consuming problem -> we can work with that! models behavior comes from data, if the model sees good examples in Traces or is given good environments to practice in, it will get better Kimi, DeepSeek, Jev, etc -> all of these launches explicitly talked about how their data recipe was the sauce
Show more
We spent the last few days testing JEV internally. We tried to reproduce it, break it, and improve it. 5 things we learned: 1. JEV’s core insight is simple - and probably right. If the answer space is bounded, don’t generate the answer token by token. Remove autoregressive decoding and you can remove 1–2 orders of magnitude of inference work. 2. RLCD isn’t the moat. Data might be. Laya already open-sourced the implementation + weights. The missing piece is the synthetic data recipe. And our experiments strongly point in the same direction. 3. “Open source already beat JEV” is a benchmark illusion. Same checkpoint: In-distribution: 0.769 OOD: 0.541 Change the distribution and the apparent breakthrough largely disappears. 4. Compute-optimal ≠ learnability-optimal. We moved state outside the problem sequence to save compute. Result: -27 points. Likely because we saved FLOPs while throwing away useful MLM pretraining priors. Then we tested 6 more ideas in one night: anchor selection, continuity smoothing, asymmetric windows, bucketed temperature, two-stage retrieval, full RLCD. All failed or failed to generalize. Only one thing consistently worked: More data. 1,200 → 123,475 examples OOD: 0.4069 → 0.5498 5. The weirdest result: A decoder with zero additional training still beat every trained small encoder: 0.5671 vs 0.5628 / 0.5411 / 0.4069 Our takeaway: JEV’s breakthrough may not be a particular architecture or training algorithm. It may be a much simpler idea: When the answer space is bounded, search it. Don’t generate it. And right now, the biggest bottleneck to making that work broadly doesn’t look like architecture. It looks like data.
Show more
How auditing RL Environments (ie. looking at the data) will help us explain model behavior "models are benchmark shaped" bc GRPO style RL is essentially - synthetic data generation by a model - induced by the environments + harness design - behavior (trajectories) reinforced by verifier design the "data" is RL environments & tasks, a model generates a series of tokens in its exploration of that environment trying to solve the task we don't really know what it will do, but we reward behavior that aligns with the verifier Encouraged behaviors: important: the only behavior that even has an opportunity to get rewarded is trajectories our environment "induces" or "encourages". something that isn't produced, can't be rewarded if our Harness (via a tool description) or Task design encourages lots of parallel search calls over a massive document corpus to find a few facts, the model will start copying that behavior because it got rewarded for it in the future, when some other problem is roughly shaped like that search Task, the model will mimic similar behaviors whether or not that strategy is optimal models do things that their data encouraged them to do via reward Tracing Behavior to Environments: every behavior can be fuzzily traced by the accumulation of different environment design and reward combinations the model saw over training i think we all explicitly know this but we don't have the interpretability tooling to understand induced behaviors at a fine-grained level over a massive training run this is why I'm very exicting that ppl are swarming around Trace analysis over Evals/Environments I bet a lot of "weird" or "bad" behavior comes from some quirks in environment design that inadvertantly rewarded that behavior the only thing that even has an opportunity to get rewarded Vestigial Behavior RL is in part inherently exploratory. Models need to do a bunch of stuff in rollouts to figure out what works, the verifier will reward what works But the verifier won't explicitly penalize any behavior that has a neutral effect but that co-occurs in a successful rollout this is how we get behavior that used to be helpful in some tasks, doesn't hurt current tasks, and thus persists over time similar to how humans have vestigial organs like the appendix i bet we can collectively figure out a ton about model behavior by mechanistically working backwards from the data and I'm bullish humans and agents working together will make a lot of progress on this in the next year
Show more
“Insilico Medicine will contribute proprietary datasets spanning multiple specialized life science tasks and execute closed-loop wet-lab experimental validations on the outputs generated by the foundation models during training.” pretty big deal - Data is the big blocker to making a model superhuman in a domain as AI solves the world’s hardest problems, data curation requires doing things in the real world (ie. Wet labs) will probably see a lot more of this style of deal across domains in one way it’s incredibly exciting to have collaboration to solve humanities hardest problems in Bio, Physics, Math, Robotics, etc but also hope some of this data becomes open it’s tough game theory for openness in a domain, say there’s N co’s with valuable data. Labs can broker a deal with any few of them for data, access to their models (see Rosalind though not exactly the same), and revenue share Labs can also purchase any of those companies themselves And Labs have massive data + compute moats but clearly from the last few months of open data + training research, the open community is getting very strong at building near the frontier and only scaling
Show more
Insilico Medicine disclosed a co-development deal with an unnamed “frontier foundation model lab,” valued at up to tens of millions of dollars.
“We’re open-sourcing Pro and Flash, MiMo-V2.6-Distill-Qwen-9B, the technical report, 7K+ RL task environments, an end-to-end RL framework and composable mini-harnesses.” wow 🔥
Introducing Xiaomi MiMo-V2.6 — Pro & Flash. Frontier intelligence, all the modalities, built in public. 🔹 Two omnimodal models, advancing through scaled reinforcement learning 🔹 Pro performs on par with Claude Opus 5 and GPT-5.6 Sol across most agent benchmarks 🔹 Pro scores 46 on the Artificial Analysis Intelligence Index — the highest among open-source models 🔹 Stronger coding, computer use, 3D reasoning and creative capabilities 🔹 Open model weights, technical report, RL environments and training code Blog:
Show more
good advice for building Evals/Benchmarks (also true for many things in life)… literally just start, build 1 task it’s daunting to have nothing and think about needing to build Terminal Bench but you don’t need that, i promise that having like 5 trusted evals is what you’re really after to start Evals/Environments/Simulations are ridiculously hard, anyone who tells you they’re not is lying to you Literally the frontier research companies in the world spend tons of human hours on Task design, review, and building/refining the system that builds Tasks see Cognition’s Frontier Code ~40 human hours per task Frontier labs spend millions trying to buy these tasks Your first Task will suck, that’s fine, this is research If all your research worked that would be insane but as you keep failing and iterating you’ll build the Eval building muscle for your and your team and that’ll be great because you’ll collectively get better at Evals designed for your most important use cases and that’ll lead to better agents than what copying any existing bench could do for you it’s a marathon, it’s really hard, just get started, publish openly if you can, and reach out to ppl (most want to help anyone trying to do more evals 🚀)
Show more
“the cold start is smaller than people think” - many people complain about designing a comprehensive set of tasks & verifiers. But you don’t NEED this to get started. You need a few good ones & the means to analyze your outcomes/traces so you can update & append; evolve your evals.
Show more
if there’s a tool to better understand your data at scale you best believe we’re making it super easy to use it in LangSmith🫡 use Jev for large scale trace mining today, it’s so cheap that you probably don’t even need to sub-sample in LangSmith Gateway you can also try other OSS Jev variants to see what’s best for your tasks - understand every piece of trace data - turn it into evals & environments - build continuously improving agents from those evals
Show more
try out jev in langsmith today! can use it to score traces cheap and accurately
This is what I would type up if I were able to properly distill all the random thoughts in my brain and make them coherent for people to understand. Consider this tweet a very strong retweet, as I nod with a ‘yup, that’s it’
Show more
every time a new step model step change happens or great primitive (like Jev) is released i grow more confident in the Unbundling and Rebundling theory of Agents the Harness is a box in which we put the best tooling for a given Task increasingly clear that: - there is no such thing as a universal model or harness -> there is only best for a given Task or Domain - we can rebundle tooling from multiple agents to build the best thing for our Task - Evals and Data are the most important layer -> they’re how you both measure and build the specialized the system the most dangerous builder is the one who obsessively looks at their data, ignores all other hype architecture patterns, and builds the best harness for their task by stealing the minimum + optimal set of primitives for their task yes @JayaGup10 🤝
Show more
The Unbundling and Rebundling of Agents imo it’s incredibly underrated how important this is and other methods are that build specialized vertical capabilities that plug into harnesses Harnesses are Platforms the goal is to build the best agentic system for your task by plugging in modular components that combine to hit the key design points of accuracy, latency, cost specialized context assembly systems/models are a big part of that: - purpose built agentic search models like SWE-1.5 from @cognition and Context-1 - specialized agentic web search APIs like from @p0 - specialized subagents that do X thing well in a domain we have one notion of an agent that fully bundles all capabilities into a single model + tools to do everything but the future is probably more modular the more exciting future is Open Harness + Modular Specialized components supporting a frontier level model And there’s a an exciting opportunity for companies or open models to win a layer here like for contextual retrieval For vertical tasks, it’s clearly possible to train or harness engineer a model to be great at that task I’m excited to push the frontier of Open Harnesses that let builders plug in and orchestrate specialized layers/models for their tasks like I bet many of the vertical specific frontier agentic systems will be composed of open submodules (Context-1 style) that a frontier model (may also be open like GLM5) will orchestrate. And great companies like @PrimeIntellect will help builders create those specialized sub-modules if they don’t exist through finetuning And we’ll all benefit from lower costs and a bigger opportunity to customize for what we care about and plug that into an open harness exciting times ahead :)
Show more
very clear that harnesses across the industry will become specialized boxes optimized for a given task -> some bundling tooling like Jev! Model-Harness-Task fit some of it “just-in-time”, most prob not the best vertical agents today have already been doing this for a while -> unbundle all prompts/tools/skills/models and rebundle them for your Task domain everyone will calibrate via evals, secret sauce is still in the data layer
Show more
Sometimes classification is all you need. What's old is new again.
fwiw doing a PhD can be a great training ground for this you have regular meetings with your lab, have to explain the last week of experiments and say why none of them worked 😅 and you help your lab mates get set up on the cluster, review their paper sections, share cool ideas, run experiments/viz with them, etc if stuff doesn’t work, that’s totally ok, you go again the next week!
Show more
this is such good advice, can’t recommend it enough, bro is just being real with it just do stuff to build momentum, tell ppl about it every day, even if it doesn’t work (it would be legit insane if your stuff worked all the time) help your teammates!
Show more
this is such good advice, can’t recommend it enough, bro is just being real with it just do stuff to build momentum, tell ppl about it every day, even if it doesn’t work (it would be legit insane if your stuff worked all the time) help your teammates!
Show more