32 private links
Experiments across diverse backbone models, retrieval-based methods, and memory systems demonstrate that cognitive memory remains challenging and reveals failures not captured by existing benchmarks.
Instead, he says, business leaders should prioritize creating a culture in which their employees feel empowered to experiment with vibe coding and share their best creations. “Seeing is believing,” says Schluntz, “and I think getting non-developers in every company to use these tools to bring their ideas to life is one of the most powerful things.”
According to Anthropic researcher Eric Schluntz, vibe coding makes it so that “people are limited only by their creativity, not by the skills that they have.” Think about Apple in the 1970s; Steve Jobs was the big ideas guy, and Steve Wozniak was the technical genius who translated Jobs’ ideas into a working product. Vibe coding essentially gives everyone their own personal Woz. “If you have an image of something in your mind, you can go create it,” adds Schluntz.
TypeScript agent frameworks felt like toys. Single-threaded event loops trying to juggle concurrent agents with promises and prayer. Python agents did a little better, but after a long time they couldn’t stay up. The BEAM was built for exactly this kind of work.
While SFT distillation meaningfully improves overall performance over the base model, the gap between the two approaches is most apparent when combined with test-time compute. On in-distribution tasks, SFT benefits substantially from parallel sampling (69.1 → 75.3), yet on out-of-distribution tasks the gains are negligible (59.4 → 59.6). This suggests that distillation teaches the model to imitate task-specific expert behavior, which scales well within the training distribution but fails to generalize beyond it. In contrast, KARL benefits from test-time compute both in- and out-of-distribution, indicating that RL develops more general search capabilities rather than task-specific heuristic
Why Elixir?
Elixir is built on Erlang/BEAM/OTP, which is great for supervising long-running processes. It has an active ecosystem of tools and libraries. It also supports hot code reloading without stopping actively running subagents, which is very useful during development.
Observations
When message history tokens exceed a threshold (default: 30,000), the Observer creates observations — concise notes about what happened.
When observations exceed their threshold (default: 40,000 tokens), the Reflector condenses them — combining related items and reflecting on patterns.
The result is a three-tier system:
- Recent messages: Exact conversation history for the current task
- Observations: A log of what the Observer has seen
- Reflections: Condensed observations when memory becomes too long
we were able to demonstrate a “Top-5” LongMemEval result with very minimal modifications to dspy.RLM, just some helper functions to process the “multi-chat” sessions
Observational Memory achieves the highest score ever recorded on LongMemEval — 94.87% with gpt-5-mini — while maintaining a completely stable, cacheable context window. It beats the oracle, outperforms complex multi-step reranking systems with a single pass, and scales better with model quality than existing approaches.
OpenAI recently introduced their bespoke in-house AI data agent, a GPT-5.2-powered tool designed to help employees navigate and analyze over 600 petabytes of internal data across 70,000 datasets. By translating natural language questions into complex data insights in minutes, the agent enables teams across the company to bypass manual SQL debugging and quickly make data-driven decisions.
Searching code is an important part of every developer's workflow. We're trying to make it better.
Abstract page for arXiv paper 2310.06770v2: SWE-bench: Can Language Models Resolve Real-World GitHub Issues?
A post for developers about the new Claude 3.5 Sonnet and the SWE-bench eval
Chip Huyen's 8,000 word practical guide to building useful LLM-driven workflows that take advantage of tools. Chip starts by providing a definition of "agents" to be used in the piece …
Intelligent agents are considered by many to be the ultimate goal of AI. The classic book by Stuart Russell and Peter Norvig, Artificial Intelligence: A Mode...
A post for developers with advice and workflows for building effective AI agents