Nerra Network

Archives
Log in
Subscribe
August 31, 2026

ChatGPT Work's agent tools finally get a clear map… · M&A 🤖

View this email in your browser
Models & Agents — Daily AI models, agents, and practical developments.

Models & Agents

Daily AI models, agents, and practical developments.

Ep 159 · Aug 31, 2026

🎧 Today's episode
Episode 159 · ChatGPT Work's agent tools finally get a clear map from a builder who tested them end-to-end.
2026-08-31
▶ Listen now
ChatGPT Work's agent tools finally get a clear map from a builder who tested them end-to-end.

What You Need to Know: Simon Willison published a detailed breakdown of ChatGPT Work's capabilities and released an auto-generated reference site listing every available tool. The posts highlight differences like the "collaboration.spawn_agent" tool that exists in Work but not regular Chat. Builders exploring agentic workflows should review the linked resources this week.

Top Story

Simon Willison published a hands-on explanation of what ChatGPT Work can actually do, calling it a deeply confusing but extremely powerful tool with features unavailable in regular ChatGPT. The post walks through practical capabilities including tool access and agent spawning that differ sharply from the standard interface. A follow-up prompt produced a live reference site cataloging every tool with descriptions. The work clarifies how Work supports collaboration patterns that standard ChatGPT does not expose. Builders working with OpenAI's agent features now have a concrete starting point for experimentation. Watch for further community testing of the spawn_agent behavior across accounts. Source: simonwillison.net


Model Updates

Accelerating LLM Inference via Vector Index Based Output Embeddings: arXiv NLP The paper introduces an HNSW-based vector index that replaces dense vocabulary projection during autoregressive decoding. On CPU inference with Gemma 3, Llama 3.2, and Qwen 3 models the method improves end-to-end batch-size-one throughput by up to 82% for Gemma 3 270M while preserving AlpacaEval quality. The approach retrieves only high-scoring token candidates and scatters logits into a sparse tensor. Builders running small-batch CPU inference should test the integration on their current Gemma or Llama setups this week. Source: arxiv.org

The Effect of Emotional Context on Large Language Models' Endorsement of Premature Decisions: arXiv NLP Six commercial models were tested across career, business, and emigration scenarios under neutral versus distress conditions. Emotional expression raised endorsement scores from 18.6 to 31.5 on average, with five of the six models showing significant effects. Claude Opus was the only model that did not shift. Teams building decision-support agents should add emotional-context testing to their evaluation suites.

Select, Don't Train: The Benefits of Modular Entity Disambiguation with LLM-Based Selection: arXiv NLP A training-free BM25 retriever paired with an LLM selector reached 86.3 inKB micro-F1 on the ZELDA benchmark, improving on prior 82.3. Adding a trained dense retriever pushed the score to 88.5. The framework also supports abstention when retrieval fails. Developers maintaining knowledge graphs should evaluate the BM25-plus-LLM pipeline before investing in retriever training.

INSPIRE: An Internalize-Then-Improve Approach for Example-Driven Mathematical Reasoning: arXiv NLP The method first uses Reference-Guided Student Internalization to create preference candidates, then applies staged rubric training. Experiments across model scales showed consistent gains and no degradation on out-of-distribution benchmarks. Teams working on mathematical reasoning agents can adopt the two-stage preference pipeline.

Trajectory-Level Speculative Decoding for Diffusion Language Models: arXiv NLP The framework constructs draft denoising trajectories via confidence-stratified tree exploration and verifies them with blockwise parallel evaluation. It reduces denoising iterations by 30-40% and raises tokens-per-step from 2.6 to 4.3, delivering 7-14x speedup over vanilla diffusion LMs. Builders experimenting with diffusion language models should integrate the dual-cache approach.


Agent & Tool Developments

Inside the mesh: How autonomous AI agent teams actually ship in production: The Economic Times The article examines real production deployments of multi-agent systems and the coordination patterns that succeed at scale. It focuses on how teams move from prototype to reliable shipping workflows. Operations leaders evaluating agent meshes should read the case details for deployment checklists. Source: m.economictimes.com

Kyndryl and Google Cloud advance agentic AI at Incore Bank: Kyndryl The partnership deploys agentic AI capabilities inside a banking environment using Google Cloud infrastructure. The work targets specific operational processes at Incore Bank. Financial-services teams exploring agentic automation can review the announced scope for comparable use cases. Source: kyndryl.com

What Makes Agent Memory Useful for Reliable Unanswerable Question Handling?: arXiv NLP Four memory methods were evaluated across three UAQ datasets and two base models under a unified agentic RAG framework. Gains proved selective and fragile under dataset shift, with procedural and rule-based memories providing the most reliable support. Agent developers should prioritize decision-guidance memory formats over raw trajectory storage.

Entity-Memory Graph Retrieval Improves Evidence Coverage in Long-Conversation Question Answering: arXiv NLP Graph retrieval on 1,986 questions from ten LoCoMo conversations raised evidence recall at top-k 25 from 79.75% to 84.48%. The gain held across cutoffs from 5 to 50 while final-answer F1 showed no consistent difference. Teams building long-conversation agents should test graph-structured retrieval for evidence coverage.


Practical & Community

Bonus ChatGPT Work tool reference site from prompt: Simon Willison (AI builder) Willison ran a prompt that produced a live site listing every ChatGPT Work tool with descriptions. The site serves as a practical companion to his main explanation post. Developers mapping Work's capabilities can browse the generated reference directly. Source: x.com

Would you use an AI therapist?: Mashable The piece examines user attitudes toward AI mental-health tools and the current state of available apps. It surfaces practical questions around trust and effectiveness. Builders in the wellness space should note the reported user concerns before designing new interfaces. Source: mashable.com

LandingAgent: A Reference-Annotated Dataset and Agentic Generation Framework for Landing Pages: arXiv NLP LandingAgent profiles targets, builds reference-guided wireframes, and refines pages through critique. It outperforms direct prompting on faithfulness, conciseness, and layout diversity. Web developers generating marketing pages can test the three-phase pipeline on LandingBench.

QUORUM: QUality-Optimized Routing Using Multiple annotators: arXiv NLP The budget-aware router assigns instances to human or LLM annotators using feature-based difficulty signals and agreement rewards. It improved annotation quality by up to 34.4% while cutting costs 8.8% versus prior methods. Teams running large annotation projects should evaluate the multi-annotator routing approach.


Under the Hood: Vector Index Based Output Embeddings

Everyone talks about swapping the final linear layer for a vector index as if it is a drop-in speed trick. In practice the change replaces a dense matrix multiply with an approximate nearest-neighbor lookup followed by a sparse scatter of logits. The core insight is that only a small candidate set of tokens ever receives non-zero probability, so exact computation over the full vocabulary is unnecessary for most steps. On the Gemma 3 270M model this yields up to 82% higher tokens per second at batch size one on CPU while AlpacaEval scores remain unchanged. The quality preservation holds because the index retrieves the true top-k tokens with high probability; the main tradeoff is a small risk of missing an edge-case token that would have ranked just inside the cutoff. The approach works best when the vocabulary is large and multilingual or when inference runs on memory-bandwidth-limited hardware. When the model is already heavily quantized or when batch sizes exceed roughly eight, the relative gain shrinks and a standard dense projection may remain simpler. The gotcha that bites most teams is forgetting to re-score the retrieved candidates with the original logits before sampling; without that step the generation distribution drifts.


Things to Try This Week

  • Try the ChatGPT Work tool reference site to map available agent capabilities before building your next workflow.
  • Test the HNSW output-projection patch on Gemma 3 270M or Llama 3.2 if you run CPU inference at small batch sizes.
  • Evaluate the BM25-plus-LLM entity disambiguation pipeline on your knowledge-graph maintenance tasks.
  • Run the INSPIRE two-stage preference training on your mathematical-reasoning datasets to check for gains without OOD degradation.
  • Prototype the trajectory-level speculative decoder on any diffusion language model you are experimenting with.

On the Horizon

  • More production case studies of multi-agent meshes in regulated industries are expected as teams publish deployment metrics.
  • Additional papers on memory architectures for unanswerable-question handling will likely appear as agentic RAG matures.
  • Further work on diffusion-language-model decoding speedups should surface once the dual-cache infrastructure is widely adopted.

```claims []

💬 Reply to this email — Patrick reads every one.

Share: X · LinkedIn · WhatsApp

Forwarded this email? Subscribe here — it's free.

▶ Listen to the podcast

📺 Watch on YouTube  ·  📝 Read the blog  ·  🖼 Free image gallery (CC BY-SA)  ·  📊 Data Hub & Story Trackers  ·  🧭 Start Here

Nerra Network · AI-narrated voice (Grok TTS) · Editorial by Patrick

You're receiving this because you subscribed to Models & Agents on nerranetwork.com.

Issue #159 · Models & Agents · Aug 31, 2026
Don't miss what's next. Subscribe to Nerra Network:
← Newer ESA's JUICE probe will swing past a dark, untouched… · Frontiers 🛰️ Older → US strikes on an Iranian island killed two and injured… · Omni View 🌍
nerranetwork.com
Powered by Buttondown, the easiest way to start and grow your newsletter.