Thinking Machines releases Inkling, a 975B-parameter open-weights MoE model
Thinking Machines released Inkling, a 975B-parameter open-weights mixture-of-experts model matching closed-weight competitors at lower token cost, while xAI open-sourced its Grok CLI agent after community backlash over automatic directory uploads to cloud storage. Apple Intelligence received Chinese regulatory approval powered by Alibaba’s Qwen, and a dense wave of agentic AI research papers advanced frameworks for agent governance, verification cascades, and self-improvement.
Model Releases #
Inkling: A 975B Open-Weights Mixture-of-Experts Model #
Thinking Machines / Hugging Face Blog / TechCrunch / Hacker News (999 points)
Thinking Machines Lab released Inkling, a multimodal mixture-of-experts transformer with 975B total parameters (41B active per token), trained from scratch on 45 trillion tokens spanning text, images, audio, and video. The model uses 256 routed experts per layer with 6 active per token, supports a 1M-token context window, and achieves 87.2% on GPQA Diamond, 77.6% on SWE-Bench Verified, and 91.4% on VoiceBench. Released as open weights on Hugging Face with inference available through multiple partners, Inkling demonstrates that a well-resourced independent lab can produce frontier-competitive performance without the closed-model premium – the 999-point Hacker News response suggests the community agrees this matters.
Security #
Hack Reveals Suno AI Scraped YouTube, Deezer, and Podcasts for Training Data #
TechCrunch
A supply chain attack using compromised employee credentials exposed Suno’s source code, revealing that the AI music generator scraped audio from YouTube Music, Deezer, Genius, stock music libraries, and podcast RSS feeds – contradicting the company’s public claim that it trains only on “publicly available music files.” Beyond training data, the breach also exposed customer emails, phone numbers, and partial credit card data stored in Stripe. Suno’s non-disclosure to affected customers, characterizing it as a “limited security incident,” compounds the damage: the breach confirms what the RIAA’s ongoing lawsuit alleged and adds a data handling failure on top.
Microsoft Patches Record 570 Vulnerabilities, Credits AI-Assisted Discovery #
TechCrunch
Microsoft’s July Patch Tuesday resolved a record 570 security vulnerabilities, including two actively exploited zero-days – a Windows Server privilege escalation and a SharePoint compromise confirmed by CISA. Microsoft attributed the unprecedented volume to AI-assisted vulnerability discovery and warned that “customers should anticipate larger monthly patch volumes” going forward as AI models surface dormant bugs in decades-old code. The implicit question: if AI-driven security research can uncover hundreds of vulnerabilities per month in a single vendor’s products, the industry’s aggregate vulnerability backlog may be far larger than current disclosure rates suggest.
Compaction as Epistemic Failure: How Agentic LLM Tools Fabricate Confirmed Results from Killed Processes #
arXiv
Documents a failure mode in Claude Code where partial stdout from timed-out commands (exit code 143) gets recorded in compaction summaries as confirmed results, propagating false positives across sessions without re-verification. The mechanism conflates observation with confirmation – a timed-out process that printed partial output before being killed becomes “verified” in the compressed session history that subsequent sessions inherit. For any team using agentic coding tools with session persistence, this is an actionable warning: compaction layers that summarize rather than reproduce create epistemic debt that compounds silently.
Developer Tools #
LangSmith Fleet: Deploy Agents into Slack in One Click #
LangChain Blog
LangChain’s LangSmith Fleet now enables one-click deployment of AI agents directly into Slack, where each agent gets its own identity, can ask follow-up questions, and requests approval before taking actions. Administrators control permissions, spend limits, and credential access per agent. The move from standalone agent interfaces into the communication tool where work actually happens reflects a broader pattern: agent deployment is shifting from “build a new UI” to “embed in existing workflows.”
LangSmith Sandboxes: Isolated MicroVM Environments for Agent Execution #
LangChain Blog
LangChain introduced hardware-virtualized microVMs that give each agent its own isolated kernel, preventing untrusted code from affecting host infrastructure. The sandboxes provide sub-second provisioning, credential injection via network proxy, resource limits, and complete audit logs of commands executed, files modified, and network calls. As agents execute code from multiple untrusted sources – the model itself, cloned repositories, installed packages – giving them isolated compute environments moves from nice-to-have to security requirement.
Vint Cerf Advises DNSid Standard for AI Agent Identification on the Open Internet #
TechCrunch
Internet pioneer Vint Cerf is advising Innovation Labs on DNSid, a proposed standard that uses cryptographic proofs linked to existing domain-name infrastructure to create verifiable identities for AI agents operating across the open internet. The system would enable accountability tracking by logging agent registration over time, addressing the absence of any standardized way to identify or audit autonomous agents beyond proprietary platforms. Cerf’s framing – “what authorities they have, where they have derived those authorities, who is accountable” – positions agent identity as an infrastructure problem analogous to DNS itself rather than a platform feature.
PyTorch Triton Plugin Extensions: Custom Compiler Passes Without Forking Triton #
PyTorch Blog
PyTorch-Triton 3.7 introduced a plugin system that loads custom compiler passes, dialects, and DSL extensions at runtime without forking or recompiling Triton. The first major user is Meta’s Triton Language Extensions (TLX), which expose hardware-aware operations for explicit memory management and async compute pipelining. Benchmarks show TLX matching or exceeding cuBLAS on NVIDIA H100 and beating rocBLAS by 12-15% on AMD MI350 – eliminating the performance gap that previously required vendor-specific CUDA or ROCm code and making cross-hardware kernel optimization accessible through a standard interface.
Research & Papers #
GPT-Red: OpenAI’s Automated Red Teaming System Using Self-Play #
OpenAI / MIT Technology Review
OpenAI published details on GPT-Red, an automated red teaming system that uses self-play to improve AI safety and robustness. GPT-Red acts as a sparring partner that discovers vulnerabilities – including prompt injection attacks and cyberattack techniques – which are then used to harden production models. OpenAI credits training against GPT-Red for making GPT-5.6 its most robust release to date. The approach automates what has traditionally been an expensive manual process, but the claimed robustness gains warrant scrutiny: automated red teaming can only find the vulnerability classes it’s trained to look for, and the most dangerous attacks are precisely the ones current systems don’t anticipate.
Early Adoption of Agentic Coding Tools by GitHub Projects #
arXiv / Hugging Face Daily Papers
An empirical analysis of 25,264 agentic pull requests from 2,361 popular GitHub repositories examines how projects adopt and manage agentic coding tools at the organizational level, moving beyond individual PR outcomes to study governance patterns, acceptance rates, and integration workflows. This is the first large-scale study of agentic tool adoption as an organizational phenomenon rather than a capability benchmark. For teams evaluating whether to adopt agentic coding tools, the data on how successful projects structure their human-agent collaboration is more useful than any single model’s benchmark score.
Self-Improvements in Modern Agentic Systems: A Survey #
arXiv
A comprehensive survey framing self-improving autonomous agents as adaptive systems that convert experience into accumulated capability gains, covering the full stack from foundation model configuration through operational adaptation mechanisms. The survey maps the design space systematically – what can be improved, how experience drives improvement, and what guarantees exist around controllable evolution. For teams building production agents, this provides the clearest map to date of where self-improvement is tractable versus where it remains aspirational.
Partially Correlated Verifier Cascades in LLM Harnesses #
arXiv / Hugging Face Daily Papers
Extends the recent Odds Law result (which assumed independent verifiers) to the practically important case of partially correlated verification gates in LLM harnesses, proving that posterior log-odds grow concavely rather than linearly – meaning reliability improves polynomially rather than exponentially as verifiers are added. The paper also establishes a “blind-spot ceiling”: correlated verifiers sharing a common failure mode bound the maximum reliability achievable regardless of cascade depth. For anyone stacking multiple verification passes in production agent systems, this provides the formal basis for understanding diminishing returns and shared failure modes.
Do Agent Optimizers Compound? A Continual-Learning Evaluation on Terminal-Bench 2.0 #
arXiv
Tests whether optimization gains from agent-improvement methods actually compound when applied recursively over time – the setting that matters for deployed agents – rather than reporting one-shot improvements against fixed benchmarks. Most published optimization results measure a single improvement step; this paper asks whether the second and third optimization rounds continue to help or whether gains plateau or regress. The distinction matters because the entire value proposition of self-improving agents depends on compounding, not one-shot improvement.
AI Advice Suppresses Willingness to Say “I Don’t Know” #
arXiv / Hugging Face Daily Papers
Across five experiments (N=3,132), participants who had access to AI advice nearly eliminated their willingness to decline answering difficult questions – even when the AI advice was deliberately wrong and accuracy was incentivized. The effect held whether the AI was right or wrong, suggesting the mere availability of a confident-sounding answer changes human calibration. For teams deploying AI assistants in decision-support roles, this finding has immediate design implications: AI confidence can systematically degrade the human judgment it’s supposed to augment.
Regulatory & Policy #
Apple Intelligence Approved for China Launch with Alibaba’s Qwen #
TechCrunch
China’s Cyberspace Administration approved Apple Intelligence for the Chinese market, powered by Alibaba’s Qwen model integrated across iOS, iPadOS, macOS, and visionOS for text and image understanding and generation. Apple explored partnerships with Baidu, DeepSeek, and ByteDance before settling on Alibaba, whose US shares surged 6% on the announcement. With Greater China generating $20.5B in Apple’s Q2 2026 sales, the deal resolves Apple’s most significant AI market gap – though the partnership also demonstrates how regulatory requirements fragment the AI stack geographically, forcing companies to maintain distinct model providers per jurisdiction.
OpenAI Proposes “Reverse Federalism” Approach to AI Governance #
OpenAI News
OpenAI outlined a governance framework where state-level AI laws serve as building blocks for a national regulatory approach rather than being preempted by federal legislation. The “reverse federalism” framing positions state experimentation – including laws like Illinois’s new AI Safety Measures Act – as beneficial signal rather than fragmentation risk. The stance is notable because major tech companies have historically lobbied for federal preemption of state laws; OpenAI’s willingness to embrace state-level regulation suggests either genuine policy evolution or a strategic calculation that state-by-state compliance is preferable to a single restrictive federal framework.
Google DeepMind and Isomorphic Labs Share Joint Bioresilience Approach #
Google DeepMind
DeepMind and Isomorphic Labs published their joint framework for preventing AI misuse in biological domains while strengthening biosecurity capabilities, built on three pillars: prevention (including adapting SynthID watermarking to biology for DNA synthesis screening), detection (using AlphaEvolve and AlphaGenome for pathogen surveillance), and response (granting trusted researchers access to accelerate vaccine design). Over 15 partnerships with government bodies and biosecurity organizations have been established in the past year. The dual-use framing is deliberate – the same AI capabilities that could enable misuse are positioned as defensive assets, making the governance challenge one of access control rather than capability restriction.
Stanford HAI: The AI Sovereignty Paradox #
Stanford HAI
A Stanford HAI report finds that commercial “sovereign AI solutions” from major providers actually deepen dependencies on US technology companies rather than eliminating them, with switching costs creating lock-in effects that undermine the sovereignty they promise. The core recommendation: countries should “calibrate interdependence” rather than pursue complete self-sufficiency, strategically selecting where dependencies matter most. The finding has immediate relevance for the Apple-Alibaba deal above – China’s approach of mandating domestic AI providers for foreign platforms is one form of calibrated interdependence, trading model capability for data and regulatory control.
Funding & Business #
Ode with Anthropic Launches as $1.5B Enterprise AI Implementation Venture #
TechCrunch
Ode, a $1.5B joint venture backed by Anthropic, Blackstone, Hellman & Friedman, and Goldman Sachs, deploys experienced engineers directly into enterprise clients to build custom AI implementations. The company operates “Claude-first” with 100 engineers, competing against OpenAI’s Deployment Company and traditional consultancies like Deloitte and Accenture. The venture represents a bet that the bottleneck to enterprise AI adoption is not model capability but implementation depth – and that embedding forward-deployed engineers is more effective than selling software licenses. Whether this model scales beyond high-touch enterprise engagements remains the open question.
Indian AI Coding Startup Emergent Reaches Unicorn Status with $130M Series C #
TechCrunch
Emergent, an AI coding platform for entrepreneurs and SMBs, raised $130M at a $1.5B valuation – a 5x increase from its $300M Series B just six months prior. The company has reached $120M annualized revenue, 200,000+ paying customers, and targets non-technical users in trucking, manufacturing, and construction who need “an engineering team in a box.” Revenue splits roughly equally across North America, Europe, and other markets. The speed of growth – from launch to unicorn in just over a year – reflects strong demand for AI-powered application development outside the traditional developer audience.
Microsoft Training Salespeople to Position In-House Models Against OpenAI and Anthropic #
TechCrunch
At an internal meeting, Microsoft executives outlined a competitive strategy positioning its in-house AI models as superior to OpenAI and Anthropic for enterprise use, claiming Anthropic’s Claude was “slower and less accurate” within Microsoft’s office applications and lacked “proper security integrations.” The pivot follows Microsoft’s amended OpenAI partnership that removed exclusivity clauses in April 2026 and a broader strategy of replacing third-party models with in-house alternatives across flagship products. The shift from OpenAI’s largest investor and partner to active competitor in enterprise sales represents the most visible fracture in tech’s most important AI partnership.
Whatnot Acquires AI Startup Shaped for Real-Time Recommendations #
TechCrunch
Livestream shopping platform Whatnot acquired Shaped, a machine learning company focused on real-time recommendations and search, to bolster personalization and discovery as the platform expands into new product categories. The acquisition signal: recommendation AI companies are becoming acquisition targets for platforms with distribution but limited ML depth, suggesting the standalone recommendation-as-a-service model may be consolidating into larger platforms.
Open Source #
xAI Open-Sources Grok CLI Agent After Data Upload Controversy #
Hacker News (462 points) / Simon Willison’s Weblog
xAI open-sourced the code for its Grok CLI coding agent after severe community backlash when users discovered that running the tool in a directory could upload the entire directory contents – including SSH keys, password managers, and sensitive files – to xAI’s Google Cloud storage without adequate warning. Simon Willison’s detailed analysis documented the scope of the data exposure and the community response. The open-sourcing may partially address transparency concerns, but the incident underscores a recurring pattern: AI coding agents that require broad file access create data exfiltration risks that are architecturally distinct from traditional software vulnerabilities, and “open source the code” is not a substitute for secure-by-default design.
Infrastructure #
NVIDIA Introduces Jetson Thor T3000 and T2000 for Mass-Market Robotics and Edge AI #
NVIDIA Blog
NVIDIA launched the Jetson Thor T3000 and T2000 modules, compact AI supercomputers designed to run foundation models at the edge for general-purpose robots and autonomous machines moving from research labs to mass-market deployment. The modules target the gap between prototype robotics systems (which use full-size GPUs) and production deployment (which requires power-efficient, cost-effective compute). With multiple robotics and agentic AI papers appearing in today’s ArXiv batch studying deployment, tool use, and physical integration, the timing aligns with a research community that is increasingly focused on closing the lab-to-production gap.
Threads to Watch #
Agent harness engineering is becoming its own research discipline. Today’s ArXiv batch includes papers on harness readability and navigation, self-evolving harnesses via quality-diversity search, compaction failure modes, set-shifting behavioral tests for tool adaptation, and formal verification cascade theory. The common thread: the code surrounding the model – prompts, state management, tool orchestration – determines real-world performance as much as the model itself, and systematic approaches to improving it are maturing rapidly.
The “AI finds more vulnerabilities” feedback loop is accelerating. Microsoft’s 570-patch month attributed to AI-assisted discovery, OpenAI’s GPT-Red automating red teaming, and the Suno breach revealing undisclosed scraping practices all point in the same direction: AI is making both offensive and defensive security more productive, and organizations that lag in AI-assisted security will face growing exposure from those that lead.
Open-weights models are challenging the frontier tax. Inkling’s 975B-parameter MoE achieving competitive benchmarks at a fraction of closed-model token costs, Grok Build’s open-sourcing (however motivated), and the empirical finding that 79% of developers use open models for new AI features collectively erode the case for closed-model premiums outside the absolute frontier. The competitive pressure is now less about whether open models can match closed ones and more about how quickly they close the gap after each new frontier release.
Sources Unavailable Today #
These sources could not be fetched today. Links point to their homepages so you can check them directly.
- Weights & Biases: Fully Connected – scrape: content not extractable