Claude designed novel protein binders from scratch for… · M&A 🤖
| View this email in your browser |
![]() Models & AgentsDaily AI models, agents, and practical developments.
|
🎧 Today's episode Episode 146 · Claude designed novel protein binders from scratch for 14 of 15 targets, with 22-35% success rates that beat the field's typical 10-15%. 2026-08-19 ▶ Listen now |
What You Need to Know: Anthropic demonstrated Claude autonomously creating functional protein binders that were then built and validated by Adaptyv Bio and Twist Bioscience. Open-weight releases from Ornith and inclusionAI add new dense and MoE options for local use. OpenAI paused frontier RL training for two weeks to strengthen security and monitoring before resuming larger runs. DEPTH OVER BREADTH (news items)Top StoryAnthropic tested whether Claude could perform de novo protein binder design using a prompt written by a human expert. The model produced candidate binders against 14 out of 15 targets. Independent labs synthesized and tested the designs, confirming that 22-35% of them bound successfully depending on the experimental setup. Some binders showed several times tighter affinity than the best previously published de novo examples. Protein binders represent only the first step toward drug development, not drugs themselves, yet the result establishes a concrete foundation for further Claude work on full end-to-end molecule design pipelines. Anthropic also reiterated plans to launch a scientist access program and noted that Opus 5 remains its most capable model for life-science research. This builds on yesterday's frontier model coverage by showing concrete capability gains in a specialized scientific domain. Source: x.com Model UpdatesOrnith-1.5 family (9B dense, 35B MoE, 397B MoE): Ornith AI The new open-source suite was trained with self-improving strategies and reports 86.1 on Terminal-Bench 2.1, 86 on SWE-Bench verified, 65.1 on SWE-Bench pro, 79.6 on the multilingual variant, 56 on DeepSWE, 44.6 on HLE, 81.4 on ClawEval, and 71.2 on Tool Decathlon. These scores place the largest variant in the same range as Claude Opus 4.8 on reasoning, agentic, and coding tasks. The family spans a 9B dense model, a 35B MoE, and a 397B MoE with 56 active parameters in the DeepSWE configuration. Checkpoints are available on Hugging Face under the Ornith AI collection. Builders working on long-horizon coding or agentic benchmarks can download the 35B MoE variant to test self-improving training effects directly against Qwen3.8-27B baselines. Source: reddit.com Ling-3.0-tiny-base and Ling-3.0-flash-base checkpoints: inclusionAI Six base-model checkpoints covering pretrained, mid-trained, and WSM-merged stages were released for the 7.9B-active (tiny) and 124B-total / 5.1B-active (flash) models. None have received post-training, giving researchers clean starting points for continued pre-training, fine-tuning, and MoE studies. The tiny-base model delivers performance comparable or superior to Ling-2.5-mini-base on most benchmarks despite having only half the total parameters, with particularly strong coding results. The flash variant shows strong results on coding, reasoning, and long-context tasks relative to models two to three times larger. The WSM merging technique replaces traditional LR decay, enabling offline exploration of different decay strategies on the shared training recipe. Researchers can validate strategies first on the tiny-base checkpoint before scaling to flash-base. Source: reddit.com Kimi K3 1M-token context window evaluation: Towards Data Science A controlled head-to-head compared a full 127k-token prompt against a top-5 RAG pipeline on the same 12 questions using identical system prompts and the same model. Blind grading measured correctness, completeness, and grounding while tracking cost and latency differences. The experiment isolates the effect of providing the entire context window versus retrieval-augmented generation on answer quality. Results highlight tradeoffs in token cost, response latency, and grounding accuracy when the model can attend to 127,000 tokens directly. Developers handling large internal document sets can replicate the exact 12-question rubric to benchmark their own RAG pipelines against full-context prompting. Source: towardsdatascience.com Qwen3.8-27B Dynamic v3 Unsloth GGUFs: Unsloth New 10% higher-accuracy GGUFs were released for the 27B model along with 1-bit quants that retain 77% accuracy and run on 8GB RAM. The update uses post-training quantization only, with the imatrix file published for community reuse; no QAT or QAD was applied. The team also released an updated Unsloth Desktop build introducing auto compaction and external API tool calling support. Earlier community concerns about broken quants were addressed as a non-issue—the changes were purely accuracy improvements. The imatrix calibration dataset and overfitting analysis are available for researchers creating further fine-tunes of Qwen3.8. Source: reddit.com Agent & Tool DevelopmentsDroidrun Android automation: Trend Hunter The new tool gives AI agents direct control over Android apps and devices, extending agent reach beyond browser and desktop environments. It targets mobile-specific workflows that current desktop-focused agents cannot reach, such as in-app navigation and device-level automation on Android. Early demonstrations focus on giving agents the same level of control previously limited to mobile ChatGPT apps. The release addresses a gap where remote machine control remains unavailable in ChatGPT desktop and web clients. Source: trendhunter.com HoneyBook Claude connector: artificialintelligence-news.com HoneyBook added a native Claude connector that lets small businesses run autonomous agents for client management and operations. The integration focuses on streamlining repetitive service-business tasks without requiring custom infrastructure or additional orchestration layers. Small merchants and solopreneurs can now connect their existing HoneyBook workflows directly to Claude for agent-driven automation. The connector emphasizes production use cases in regulated or compliance-sensitive small-business environments. Source: artificialintelligence-news.com ForwardLane agentic AI scaling program: FinTech Global ForwardLane is helping financial firms move agentic AI past pilot stage by providing production-grade orchestration and compliance layers. The work targets repeatable deployment patterns for regulated environments where auditability and policy enforcement are required. Financial institutions receive concrete guidance on moving from isolated experiments to scaled agent populations that respect data residency and oversight constraints. The program focuses on the orchestration and monitoring gaps that typically stall agent projects after initial pilots. Source: fintech.global Apodex TRACES benchmark: PR Newswire Apodex released TRACES, a new benchmark specifically designed to measure AI performance on scientific discovery tasks. The benchmark aims to provide standardized evaluation for models operating in research workflows where success metrics differ from general coding or reasoning suites. It fills a gap between existing agent benchmarks and the specialized requirements of hypothesis generation, experimental design, and result interpretation in life sciences. Researchers can now compare model families on discovery-oriented tasks using a single public leaderboard. Source: prnewswire.com Practical & CommunityBeijing AI bar DeepSeek experiment: Tom's Hardware A Beijing bar is offering unlimited free DeepSeek coding tokens with every $1.50 drink, running on two NVIDIA DGX systems. The owner reports the promotion is losing money but continues as a marketing draw that attracts developers and AI enthusiasts. The setup uses the bar's DGX infrastructure to serve tokens on-site, creating a physical location where local model experimentation is subsidized by beverage sales. The experiment highlights how open-weight model access costs can be offset through unconventional community venues. Source: tomshardware.com llama.cpp --n-cpu-ffn option PR: r/LocalLLaMA A new pull request adds CPU offload controls for dense-model FFN layers, mirroring the existing --n-cpu-moe flags. Early testers report it enables Qwen3.8-27B Q4_K_M at 130k context on 16GB VRAM systems. The change provides fine-grained control over which feed-forward layers stay on GPU versus CPU for dense architectures that previously lacked equivalent flexibility to MoE models. Community discussion notes that block 64 (MTP) should remain on GPU when using speculative decoding. The PR is under active review and expected to land soon in the main llama.cpp repository. Source: reddit.com Intermediate-token analysis: r/LocalLLaMA A recent paper argues that intermediate “thinking” tokens function as prompt augmentation rather than human-like reasoning traces. Models trained on corrupted traces still achieve comparable accuracy, and trace length shows little correlation with problem difficulty. The study finds no consistent link between trace validity and solution correctness, and reinforcement learning can improve final accuracy while sometimes decreasing trace validity. These results suggest that forcing models to produce human-interpretable reasoning steps may be unnecessary for performance gains. The paper is available at openreview.net/forum?id=gDE7YcRC3F. Source: reddit.com Under the Hood: Agent Population Scaling EffectsEveryone talks about “more agents” as if simply adding instances will produce better collective behavior. In practice, the transition from single agents to populations introduces coordination overhead, communication topology choices, and emergent failure modes that are not visible at small scale. At low agent counts, simple voting or sequential hand-off works because conflicts remain rare and shared state stays consistent with minimal synchronization. Once dozens of agents operate concurrently on shared state, message volume grows quadratically unless explicit summarization or hierarchical routing is added to keep each agent’s context window manageable. Experiments show that beyond roughly 20–30 agents the dominant cost shifts from individual inference to maintaining consistent world models across the group, often requiring dedicated memory or consensus layers. The practical decision point is whether your workflow benefits from parallel exploration (favoring loose coupling and periodic merge steps) or requires tight consensus (favoring explicit coordination layers and shared memory buses). Teams that skip this analysis usually hit either redundant work or deadlock once population size exceeds the single-agent regime they originally tested. When scaling past 30 agents, start by measuring message volume and world-model divergence before adding more instances; the first bottleneck is almost always coordination rather than raw compute. Things to Try This Week
On the Horizon
|
💬 Reply to this email — Patrick reads every one. Share: X · LinkedIn · WhatsApp Forwarded this email? Subscribe here — it's free. |
📺 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 #146 · Models & Agents · Aug 19, 2026 |
