AI News HubLIVE

Agents updates

NVIDIA Releases Cosmos 3 Edge: A 4B-Parameter Open World Model That Reasons and Generates Robot Actions On-Device

NVIDIA has released Cosmos 3 Edge, a 4-billion-parameter open world model built to run on-device. It helps robots and vision AI agents understand surroundings, reason in real time, and generate robot actions locally. The Cosmos 3 family included Cosmos 3 Nano (16B) and Cosmos 3 Super (64B) shipped on May 31, 2026 at GTC Taipei. Edge is the third and smallest tier, at roughly one-sixteenth the size of Super. The problem is specific. Machines operate at the edge in factories, warehouses, and hospitals. They need data center–level performance on memory-constrained systems. Cosmos 3 Edge targets that gap. What does world model do here? A world model learns how an environment changes over time. It represents objects, motion, spatial relationships, and the effects of actions. Consider a robot reaching for an object. Recognizing the object is only the first step. The robot must also track where the object is, how its gripper moves, and what happens on contact. A world model reasons about these relationships. It can predict the visual result of an action, infer the action that caused a change, or generate an action to reach a goal. Cosmos 3 Edge brings these capabilities into one on-device model. Its shared representation lets a system understand the current world state, simulate possible futures, and connect those futures to actions. Two transformer towers, one shared representation. Cosmos 3 uses a Mixture-of-Transformers architecture with two towers, described in NVIDIA's technical report. The autoregressive tower processes vision and text tokens for understanding and reasoning. The diffusion tower processes vision, audio, and action tokens for prediction, generation, and neural simulation. The two towers keep separate normalization layers and multilayer perceptrons. They share multimodal attention layers, which align information across language, video, audio, and action. This lets the model reason about a scene before it generates an output. The attention pattern adapts to each modality. Language uses causal attention, where each token attends to earlier tokens. Diffusion tokens attend more broadly to the available context, supporting coherent prediction and generation. Depending on the task, the model emits reasoning tokens from the autoregressive tower, or denoised video and action tokens from the diffusion tower. Cosmos 3 Edge uses a 2B dense transformer for its reasoner, and follows Qwen3-VL-compatible message conventions for image and video inputs, per the Cosmos GitHub repository. One action representation across embodiments. Physical systems describe actions differently. A vehicle uses ego pose and movement. A camera uses camera motion. A robot arm uses the pose of its end effector, and a gripper adds grasp state. Cosmos 3 maps these embodiments into a common action representation. Actions are encoded as compact geometric vectors that capture translation, rotation, and manipulation state. This connects control to the visual structure of the world. The model associates pixel changes with physical motion and control inputs. Generated video then becomes more than a prediction. It represents how the world should change in response to an action. Supported action dimensions depend on the embodiment. The Cosmos GitHub repository lists camera motion (9D), autonomous vehicle (9D), egocentric motion (57D), single-arm robot (10D), dual-arm robot (20D), and humanoid robot (29D). Policy mode runs in both directions. As a policy, Cosmos 3 Edge predicts an action together with its expected visual consequence. Current state goes in; an action and its likely visual outcome come out. Action flows in both directions. The model can predict the effect of an action, or infer the action from its effect. This connects world modeling directly to robot policy training and evaluation. NVIDIA also released Cosmos 3 Edge Policy (DROID). It is a robot manipulation policy post-trained on the DROID dataset for pick-and-place tasks, with post-training scripts included. Developers can fine-tune on a small H100 cluster or an NVIDIA DGX Station before deployment. Is it Deployable? Cosmos 3 Edge delivers memory-efficient inference across NVIDIA edge computers. Targets include NVIDIA RTX PRO GPUs, NVIDIA DGX, GeForce RTX GPUs, and NVIDIA Jetson, including the newly announced Jetson T2000 and T3000 modules. As a post-trained world action model (WAM), the model operates at robot-control resolution of 640×360 observations. On NVIDIA Jetson Thor it generates 32 actions per inference, while achieving real-time control at 15 Hz. For generation, the Edge tier supports 256p and 480p resolutions, 12–30 fps, and 50–150 frames. Using the open Cosmos framework, developers can post-train Cosmos 3 Edge for a specific embodiment and sensor set in about a day. NVIDIA positions a GeForce RTX 3070 or better as a local on-ramp for prototyping. Key Takeaways: Cosmos 3 Edge is a 4B open world model (2B dense reasoner) that runs on-device, released July 20 on Hugging Face. A Mixture-of-Transformers design pairs an autoregressive reasoner tower with a diffusion generator tower through shared multimodal attention. It hits 640×360 control resolution, 32 actions per inference, and 15 Hz real-time control on NVIDIA Jetson Thor. Actions map to a common translation/rotation/manipulation representation, spanning camera, vehicle, single-arm, dual-arm, and humanoid embodiments. Benchmarks (#1 on VANTAGE-Bench at 4B) are internally claimed; the model ships under Linux Foundation OpenMDW-1.1. Sources: Hugging Face launch post, Cosmos3-Edge model card, Cosmos 3 collection, NVIDIA technical report (PDF), Cosmos GitHub, NVIDIA developer blog, Jetson Thor blog and NVIDIA Newsroom: Japan coalition. The post NVIDIA Releases Cosmos 3 Edge: A 4B-Parameter Open World Model That Reasons and Generates Robot Actions On-Device appeared first on MarkTechPost.

  • Cosmos 3 Edge is a 4B open world model that runs on-device, released July 20 on Hugging Face.
  • Mixture-of-Transformers design pairs autoregressive reasoner tower with diffusion generator tower via shared multimodal attention.
In-site article

ANSI escape injection in MCP servers: Hidden from humans, visible to AI

ANSI escape sequences can be used to hide instructions from human reviewers while remaining visible to AI agents, enabling injection attacks. This article covers two attack variants (direct-fetch and stored AESI) and how DAST can automatically detect them.

  • ANSI escape sequences are invisible in terminals but read byte-by-byte by language models, creating an attack surface.
  • Direct-fetch AESI injects hidden instructions via malicious URLs; stored AESI persists in storage and triggers on later reads.
In-site article

Show HN: SteerPlane – open-source runtime guardrails for AI agents

SteerPlane is an open-source runtime guardrail tool that integrates with one line of code, providing loop detection, cost ceilings, policy enforcement, and real-time monitoring for AI agents.

  • SteerPlane adds guardrails to AI agents via decorator or context manager, preventing infinite loops, runaway costs, and destructive actions.
  • Core features include loop detection, cost ceiling, streaming gateway, policy engine, and real-time dashboard.
In-site article

Storybook: AI MCP

Storybook introduces AI integration using MCP tools, enabling AI agents to generate UI from existing components with automated test feedback via Storybook Test to ensure quality and consistency.

  • Storybook provides structured UI context and test feedback for AI agents, promoting component reuse and reducing hallucinations.
  • Agents write stories to document component states and edge cases, making changes explicit.
In-site article

From Memory to Skills: Evidence-Grounded Co-Evolution Governance for Long-Horizon LLM Agents

Existing memory systems for long-horizon LLM agents often retrieve prior traces as passive context rather than converting them into executable capabilities. This paper proposes MSCE, a training-free Memory-Skill Co-Evolution framework that organizes agent experience into grounded step traces, reusable procedural policies, and declarative environmental cognition. MSCE crystallizes evidence-backed L2 policies into callable skills and introduces reflection-weighted value backfilling. Experiments show significant improvements over state-of-the-art baselines.

  • MSCE organizes agent experience into grounded step traces, reusable procedural policies, and declarative environmental cognition.
  • Reflection-weighted value backfilling propagates sparse terminal feedback through dense self-reflections to produce evidence-calibrated trace values.
In-site article

RouteCost: A Production-Inspired Multi-Stage Framework for Pre-Order Shipping Cost Estimation in E-Commerce

Accurate pre-order shipping cost estimation is crucial in e-commerce. RouteCost introduces a multi-stage framework that decomposes the problem into time-aware demand forecasting, fee-card-informed baseline pricing, residual correction, and proxy-based box-consolidation inference. Evaluated on over 250,000 orders across 260 products and 18 months, it improves predictive quality and calibration while preserving route-level interpretability.

  • Pre-order shipping cost estimation is affected by distance, destination demand mix, billable weight, dimensional pricing, surcharge triggers, and shipment consolidation.
  • RouteCost decomposes the problem into four stages: time-aware demand forecasting, fee-card-informed baseline pricing, Stage 2 residual correction, and proxy-based box-consolidation inference.
In-site article

Reinforcement Learning-Guided NSGA-II Enhanced with Gray Relational Coefficient for Multi-Objective Optimization: Application to NASDAQ Portfolio Optimization

This paper proposes a novel RL-guided NSGA-II algorithm enhanced with Gray Relational Coefficients (RL-NSGA-II-GRC) that improves convergence and diversity of Pareto fronts in multi-objective optimization. It achieves around 5.8% and 4.4% convergence improvements over NSGA-II on benchmarks and produces a smooth efficient frontier for NASDAQ portfolio optimization, identifying a maximum Sharpe ratio portfolio of 1.92.

  • Proposes RL-NSGA-II-GRC combining an RL agent for adaptive parameter control and GRC-based selection.
  • Designs a GRC-enhanced tournament operator considering dominance rank, crowding distance, and proximity to ideal reference.
In-site article

Masked Diffusion Language Models are Strong and Steerable Text-Based World Models for Agentic RL

Recent growth in reinforcement learning (RL) requires diverse training environments. World models can simulate environment states, but autoregressive models suffer from left-to-right bias. Masked diffusion language models (MDLMs) overcome this via bidirectional anchor-aware denoising, achieving better coherence and rollout diversity than LLMs 4x their size. A GRPO training framework is introduced, achieving up to 47% absolute gains on zero-shot transfer to out-of-distribution environments. The dataset and code are open-sourced.

  • MDLMs outperform autoregressive LLMs in coherence and rollout diversity for text-based world modeling.
  • Bidirectional anchor-aware denoising enables conditioning on global state anchors.
In-site article

Deterministic Replay for AI Agent Systems

arXiv:2607.16200 presents agrepl, a CLI framework for deterministic replay of AI agent executions. Using a MITM proxy, it records external interactions and replays them in isolation, achieving perfect fidelity (F=1.0) and 98.3% latency reduction.

  • AI agent systems are inherently non-deterministic due to LLM variance and external state. Existing tools can't reproduce runs in isolation.
  • agrepl intercepts all external interactions via MITM proxy and replays them in a sandbox.
In-site article

PlanFlip: Attacking Multi-Agent LLM Systems via Planning-Phase Prompt Injection

A new research paper introduces PlanFlip, a framework of four planning-phase prompt injection attacks against multi-agent LLM systems. The study finds that stronger models like GPT-5 are more vulnerable, homogeneous backbones create a correlated-agent blind spot, and reasoning-augmented models like DeepSeek-R1 resist attacks. Two defenses are proposed with high detection rates.

  • PlanFlip introduces four prompt injection attacks targeting the planning phase of multi-agent LLM systems.
  • Stronger models (e.g., GPT-5) show higher attack success, contradicting the assumption that capability equals security.
In-site article

Some Large Language Models Exhibit Consistent Risk Attitudes

A new study introduces a cross-domain framework to test LLMs' risk attitudes under uncertainty, finding that most models exhibit stable and consistent risk preferences both within and across tasks, with a distribution more restricted than humans.

  • Framework decouples contextual risk belief from categorical decision; tested 6 LLMs and 100 humans.
  • Most LLMs show robust intra-task consistency and cross-domain rank-order stability.
In-site article

Hugging Face warns an autonomous AI agent hacked its network

Hugging Face disclosed that attackers used an autonomous AI agent system to breach its production infrastructure, gaining access to internal datasets and credentials. The company is investigating potential impact on partners and customers, with no evidence of tampering with public models or datasets so far.

  • Attackers breached Hugging Face production environment using an autonomous AI agent system.
  • Internal datasets and credentials were accessed; investigation ongoing.
In-site article

Concentrate: LLM Gateway

Concentrate is a managed LLM gateway that provides a single API to access over 130 models from major providers. It offers features such as model routing, spend tracking, security controls, and fallback redundancy, designed for teams scaling AI in production.

  • Single API for 130+ models from providers like OpenAI, Anthropic, and Google.
  • Built-in security: data redaction, zero data retention, audit logs, SSO, and RBAC.
In-site article

Sakana Fugu-Cyber

Sakana AI releases Fugu-Cyber, a new orchestration model for cyber defense, achieving state-of-the-art performance on CyberGym and CTI-REALM benchmarks. The article emphasizes that frontier models alone are insufficient for enterprise security, requiring specialized human expertise and deep integration. Sakana's Applied Enterprise team is collaborating with major Japanese institutions to deploy these models safely. Access to Fugu-Cyber is gated behind an application and approval process.

  • Fugu-Cyber achieves 86.9% on CyberGym and 72.1% on CTI-REALM, matching cyber-focused frontier models like GPT-5.5-Cyber.
  • The article argues that frontier models are not a silver bullet; they require human expertise and integration into real-world environments.
In-site article

Show HN: AI Secretary – Stop checking your phone "just in case"

A self-hosted AI notification filter for Telegram that uses LLMs to filter noisy chats and send only important alerts via ntfy, allowing users to keep notifications off without missing urgent messages.

  • Uses Telethon to listen to Telegram messages and Claude LLM to judge importance.
  • Filters group messages, sends calls and important DMs via ntfy.
In-site article

Show HN: Agent Search Engine – an independent index of 247 AI agents

A live technical index ranking AI agents, MCP servers, frameworks, and infrastructure by maintained adoption. Explore 247 verified records across 11 system classes.

  • An independent, unbiased index of 247 AI agents across 11 system classes.
  • Ranked by maintained adoption, not sponsorship.
In-site article

Show HN: Vidmoat – a video editing pipeline any AI agent can operate

Vidmoat is an AI-powered video editor that lets you edit by prompt. It features auto-cut, AI captions, text-to-edit, one-click shorts, and an MCP server that enables any AI agent (Claude, Cursor, etc.) to drive the entire editing pipeline end-to-end.

  • AI-first video editor operated via prompts or AI agents
  • MCP server integration for external agents (Claude, Cursor, etc.)
In-site article

Show HN: PounceDomains – Domain discovery and sniping for Namecheap Marketplace

PounceDomains is an AI-powered domain sniper for the Namecheap Marketplace. It surfaces the best names from thousands of aftermarket auctions, scores and enriches every match with AI tuned to your taste, and alerts you instantly so you can bid in one click.

  • AI builds tuned configs from plain English descriptions
  • Real-time scanning of Namecheap Market with AI scoring and enrichment
In-site article

AI's most important protocol is getting a little bit easier to use

The Model Context Protocol (MCP) is receiving a significant update that simplifies how AI models connect to external data sources and services, as explained by startup Arcade.

  • MCP is a foundational protocol for AI interoperability
  • The new version has been in spec since May and launches next week
In-site article

Is Open Weight AI Decelerationist?

Dean Ball, OpenAI's chief of strategic futures, argues that open-weight models are inherently decelerationist because they deter capital expenditure. This article examines the economic logic behind the claim, considering China's capacity to build AI infrastructure, shifting training paradigms, and where value accrues in the AI stack. It concludes that open-weight models may actually be accelerationist by lowering costs and broadening participation, even if they disrupt current business models.

  • Dean Ball claims open-weight models are decelerationist as they reduce capital investment.
  • China may exacerbate this by subsidizing capacity and compressing margins.
In-site article

Colibrì proof-of-concept gains frontier-level 1.5-TB AI model

Italian engineer Vincenzo (JustVugg) created Colibrì, a proof-of-concept that runs the 744-billion-parameter GLM-5.2 model (1.5TB) on a modest CPU with only 25GB RAM and 1GB/s NVMe. Despite extremely slow speeds (0.05-0.1 tokens per second), it leverages the Mixture-of-Experts architecture to load experts per token, achieving frontier-level answer quality. The project is open-source and aims to explore running large models on consumer hardware.

  • Colibrì runs a 1.5TB AI model on minimal hardware at 0.05-0.1 tokens/sec.
  • It uses MoE architecture to load/unload experts per token, enabling operation within tight memory.
In-site article

Natural raises $30M to reinvent payments for AI agents – and take on Stripe

AI agents are performing complex tasks but still need humans for payments. Natural raised $30M to build payment infrastructure designed for autonomous AI agents, challenging traditional financial rails.

  • Natural raises $30M to enable AI agents to make payments autonomously.
  • Traditional payment systems like credit cards and ACH require human authorization, slowing down AI agents.
In-site article

Can AI agents use ur site?

OpenIngress crawls websites, inspects what AI agents can see and interact with, and runs LLM-guided tasks to identify navigation breakpoints. It generates reports on coverage, operability scores, and blocker evidence, helping developers ensure their sites are agent-friendly.

  • OpenIngress crawls sites using Playwright, capturing DOM, screenshots, and accessibility snapshots.
  • It performs static operability analysis and gap taxonomy to identify issues like unlabeled buttons or JS-dependent content.
In-site article

Ramp AI Router: Choose the Right Model for Every Request, Cut Costs by 30%

Ramp released its AI Router, which automatically selects the best language model for each request, reducing LLM costs by 30% while maintaining performance. Previously used internally for over 100 AI use cases, the tool is now available to the public.

  • Ramp's AI Router manages over 100 AI use cases by routing requests to the optimal model.
  • It cut LLM costs by 30% while improving feature intelligence and speed.
In-site article

Repos in 29 days with an AI pipeline – what broke wasn't code

A developer built 26 repositories and 335 pages in 29 days using Claude Code. The failures were structural, not syntactic: SEO cannibalization, URL convention drift, source-production divergence, and buggy verification tools. 93% of token costs were wasted on re-reading context. Lessons include benchmarking, diff-before-copy, probing live before trusting static analysis, writing conventions before scaling, and one-session-one-task.

  • Despite high volume (26 repos, 1,549 commits), the AI pipeline's failures were structural, not syntactic.
  • Issues included SEO cannibalization, URL convention drift, source-production divergence, and flawed verification tools.
In-site article

AI Voice Phishing Performs on Par with Human Scammers at a Fraction of the Cost

A large-scale human-subject study (n=4,100) finds that AI voice models achieve compliance rates comparable to human scammers, with up to 36% of participants falling for emotional scams. Participants struggle to distinguish AI from human voices. Economic analysis suggests AI vishing is already profitable for some models, highlighting a new scalable threat.

  • AI voice models hit up to 36% success in emotional scam scenarios, with 16.5% overall compliance.
  • Participants detected AI voices with only 70.3% accuracy, and frequently misidentified humans as AI.
In-site article

Can Seedance 2.0 Draw in 2D? The Anime Animation Playbook

The article explains the challenges and advantages of using Seedance 2.0 for 2D anime generation, including technical difficulties, costs, workflow, and copyright considerations.

  • 2D anime is harder than 3D due to line boil and color crawl.
  • Seedance 2.0 offers 15-second multi-shot output, 9-image reference budget, and native dual-channel audio with lip-sync in 8+ languages.
In-site article

Show HN: Cognikernel- Local Memory for AI Coding Assistants

Cognikernel provides persistent, structured project memory for AI coding assistants like Claude Code and Codex. It captures decisions, constraints, and abandoned approaches from coding sessions using an event-sourced store, and injects compact context blocks in future sessions to prevent re-decision. Unlike cloud-based memory tools, Cognikernel runs a deterministic extraction pipeline locally with two small ONNX models (~130 MB total) on CPU, ensuring privacy and low latency. The system features four hook surfaces, hybrid retrieval (BM25 + optional dense embeddings), and a fail-open reliability spine. Benchmarks show 2-4× fewer file reads and up to ~20% token cost reduction on complex projects.

  • Cognikernel offers local, persistent project memory for AI coding assistants, reducing redundant decisions.
  • It uses a deterministic pipeline (no LLM) with two small encoder models for memory extraction, ensuring privacy and low latency.
In-site article

Knowing, Remembering, Exactly, Vaguely: An Agent-Native Database (PlatypusDB)

PlatypusDB is an agent-native bitemporal event database built for WunderOS. It uses a Merkle WAL and supports graph, vector, versioned tree, image, and analogy views, combining crisp Datalog queries with fuzzy VSA resonance. The article explains why agent workloads require a custom database and how PlatypusDB addresses 14 key requirements.

  • PlatypusDB is an agent-native, bitemporal event database for WunderOS.
  • Core Merkle WAL derived into graph, vector, and other views.
In-site article

How AI Is Reshaping Regulated Professional Workflows

Regulated industries such as financial services, legal, tax, and audit face zero tolerance for error when adopting AI. Stanford research shows hallucination rates of 58-88% in general-purpose language models. AI must meet fiduciary-grade accuracy, data protection, and explicit sign-off requirements to be safely deployed. The article distills four key insights: accuracy standards, workflow automation, data guarantees, and accountability.

  • Regulated industries require AI outputs to meet professional-grade accuracy; general-purpose models fall short.
  • AI can significantly reduce labor-intensive processes like regulatory filing preparation, but final accountability rests with professionals.
In-site article

Reverse-engineering is cheap now

Anecdotes show coding agents have slashed the cost of reverse-engineering home devices. The ROI equation has changed: low effort for automation, low cost of failure, and less psychological baggage from maintenance.

  • Coding agents lower the barrier for reverse-engineering and automation
  • Projects previously not worth the effort due to maintenance risks are now viable
In-site article

GraphRAG is overkill. This is what we do instead for knowledge graphs

Standard RAG excels at simple fact retrieval but fails on portfolio and counting questions. GraphRAG promised to solve this with knowledge graphs but is expensive and complex. The author presents a 'graph-like RAG' approach that uses ordinary databases, lazy summarization, and a fixed ontology, achieving similar benefits at a fraction of the cost and operational burden.

  • Standard RAG fails on portfolio and counting questions, which are critical for enterprise use
  • GraphRAG indexing costs 1000x more than plain vector search and its benefits are narrow
In-site article

AI Red Teaming: Securing Agentic AI Systems (video)

As AI systems gain reasoning, tool use, data access, and autonomous action capabilities, traditional security approaches fall short. This webinar explores why AI-powered adversarial testing is becoming essential for modern AI security.

  • Agentic AI creates entirely new security and safety risks
  • Traditional benchmarks, pentests, and static evaluations miss AI-specific attack patterns
In-site article

Stoke – Kill switch for runaway AI agents (Rust, budget caps)

Stoke is a lightweight Rust gateway that enforces hard budget caps, loop detection, and rate limits on AI agent API calls before they reach the provider, preventing runaway spending. It also offers local-first routing across multiple machines, auto-routing with cost/speed optimization, and a fail-closed architecture.

  • Hard USD budget caps per API key enforced before any provider call, with real-time per-key spend tracking.
  • Loop kill switch using exact-hash and semantic similarity detection to block repetitive requests within seconds.
In-site article

Beyond grep: The case for a context-rich AI coding harness

In a discussion, Perneti and Wu agree on the continued exponential improvement of AI models but disagree on context assembly for coding tools. They highlight the potential shift toward smaller models as costs rise.

  • Both experts agree frontier AI models will continue improving exponentially for at least the next year.
  • The main disagreement is whether context should be pre-assembled or discovered per task.
In-site article

Pointhound ran four-person team as 750k used its products in 2025

Jay Reno operated Pointhound with only four full-time staff while 750,000 people used its products in 2025, showcasing the power of AI agents to compress project timelines from months to days. Reno predicts a 10x sales increase would require just two more people, though the forecast remains untested and revenue is undisclosed.

  • Pointhound operated with just four full-time employees.
  • AI agents reduced project times from months to days.
In-site article

Scaling document classification to 100k+ labels

Databricks proposes a method combining vector search and AI Classify function to handle large-scale document classification with up to 100k+ labels. On three benchmarks, it outperforms the best cost-efficient frontier model by five points of accuracy at roughly a hundredth of the token cost.

  • Traditional approaches like regex, supervised classifiers, and direct LLM calls struggle with cost, maintenance, and context limits.
  • The solution uses vector search to shortlist candidate labels, then AI Classify to pick the best match from the shortlist.
In-site article

Show HN: Neuron. Turn a SQL query history into a semantic layer

Neuron Pipeline mines thousands of analyst-written SQL queries to distill a platform-neutral semantic model (OSI v1.0 YAML) including data catalog, lineage, metrics, and 46 KPI scores. Runs 100% locally with Docker, exports to Snowflake, Databricks, dbt, Looker, Cube, and more. Upcoming Neuron Agent enables plain-English Q&A over your query history.

  • Runs entirely on local machine, no data leaves your computer
  • Outputs a single OSI v1.0 YAML semantic model
In-site article

$45M for AI text messages: Inside Israel's push to shape US opinion

A Wall Street Journal investigation reveals that Israel has spent over $45 million on an influence campaign in the United States, using AI-generated text messages and hiring Brad Parscale to shape public opinion, particularly among young conservatives and MAGA supporters.

  • Israel spent $45 million on a US influence campaign using AI text messages and Brad Parscale.
  • The campaign targets young conservatives and MAGA supporters to counteract declining support for Israel.
In-site article

Build specialized agent workflows for your business with Amazon Quick and NVIDIA NeMo Agent Toolkit

This post shows how Amazon Quick can serve as the business-user front door for specialized agent workflows, using the NVIDIA NeMo Agent Toolkit to build a supply-chain risk example that helps planners move from dashboard and knowledge context to guided mitigation recommendations.

  • Amazon Quick provides a conversational workspace for structured data and enterprise knowledge, with over 100 pre-built action connectors.
  • NVIDIA NeMo Agent Toolkit is an open-source, framework-agnostic library for building and optimizing agentic workflows.
In-site article

IssueBench - How We Evaluate Engine

Learn how LangChain built IssueBench, a synthetic benchmark for evaluating how well LangSmith Engine identifies, categorizes, and groups issues in agent traces.

  • IssueBench consists of 15 tasks across SRE log analysis, software engineering, and customer support domains.
  • Engine must identify issues, assign failure categories, attach to existing issues, and group new failures.
In-site article

How Couchbase built a multi-model AI architecture for Capella iQ with Amazon Bedrock

This post describes how Couchbase adopted Amazon Bedrock to power Capella iQ with Anthropic’s Claude family of models, the architectural decisions behind their multi-model approach, and the operational benefits realized in production.

  • Couchbase uses Amazon Bedrock with Claude Sonnet 4.5 to achieve ~76% accuracy across core workflows.
  • Multi-region architecture with cross-region inference ensures high availability and resilience.
In-site article

Evolving from legacy BI to agentic AI at Tradeshift with Amazon Quick

In this post, we describe how Tradeshift deployed Amazon Quick with agentic AI capabilities to replace our legacy BI tool, resulting in query response times up to 30 times faster, a 40 percent reduction in total cost of ownership, and turned embedded analytics into a product that generates revenue.

  • Query response time reduced from 45-90 seconds to under 3 seconds
  • 40% reduction in total cost of ownership and 35% reduction in infrastructure costs
In-site article

HuggingFace breach that's blamed on AI agent is defended by AI, too - what users should do next

Hugging Face discloses a cyberattack compromised internal infrastructure and credentials, believed to be the work of an unknown agentic AI. The attack began with remote code execution and template injection in a dataset. An AI detected the intrusion and analyzed logs in hours. Users should rotate tokens and monitor accounts.

  • Hugging Face breach blamed on an unknown agentic AI, exposing internal credentials and production platform.
  • Attack exploited dataset vulnerabilities for code execution, with AI agent performing thousands of actions across sandboxes.
In-site article

An AI agent breached Hugging Face before an AI defender caught it: What users should do next

Hugging Face disclosed a security incident involving an autonomous AI agent that compromised internal infrastructure and credentials. An AI defense system detected and analyzed the breach within hours. This event signals a new era of AI-on-AI cyber conflicts.

  • Hugging Face breach caused by an AI agent; production platform and credentials exposed
  • Attack exploited remote code execution in data processing pipeline
In-site article

Open Minis Is the iOS Agent I Wish Siri AI Could Be

Open Minis is an iOS agent that deeply integrates with native Apple frameworks via a built-in Linux terminal and custom CLIs, enabling tasks like HomeKit sensor queries, cross-referencing photos with Health data, and generating interactive maps. It surpasses Siri AI by leveraging frontier models with real agentic capabilities.

  • Uses iSH Linux terminal and official Apple APIs to control Reminders, Music, Calendar, Maps, HomeKit, HealthKit, Files, and more.
  • Supports any frontier model and allows self-modification through natural language commands.
In-site article

Spark 4.2 has a feature that could retire your vector database

Apache Spark 4.2 introduces native vector search, governed metrics, streaming upgrades, and deeper Python support, positioning Spark as an AI serving layer and potentially reducing reliance on separate vector databases.

  • Spark 4.2 adds native vector search with distance functions and NEAREST BY SQL operator.
  • Governed metric views standardize business metrics across applications.
In-site article

Kimi K3: The open-weights escalation

Moonshot AI released Kimi K3, a 2.8T parameter MoE model with open weights, ranking high on benchmarks. The article discusses the narrowing gap between Chinese and US AI models, China's commitment to open source, economic impacts of open models, and China's efficiency advantages.

  • Kimi K3 is a 2.8T parameter MoE open-weights model, approaching frontier performance.
  • Chinese AI labs demonstrate independent innovation, not just fast following.
In-site article

Building Governed Agents: A Framework for Cost, Control, and Compliance

The gateway is the runtime control plane for enterprise AI, turning policy into enforceable decisions across every model call, tool call, and agent hop.

  • Governance requires a runtime control plane (LLM gateway) to enforce policy across model calls, tool calls, and agent interactions.
  • Foundations include security, authentication, audit logs, user management, provider secrets, data separation, and data residency.
In-site article

Topics

Agents AI News | AI News Hub