AI News Archive: June 26, 2026 — Part 3
Sourced from 500+ daily AI sources, scored by relevance.
- Firefly Aerospace acquires AI company for moon missions
Firefly Aerospace acquires AI company for moon missions Austin American-Statesman
Score: 68💰 MoneyJun 26, 2026https://www.statesman.com/business/technology/article/firefly-aerospace-space-ng-acquisition-22320262.php - Apple adds Google Gemini coding assistant in Xcode 26.6 update
Apple has released Xcode 26.6, adding support for a third coding assistant to the company’s integrated development environment software.
Score: 68🌐 MovesJun 26, 2026https://9to5mac.com/2026/06/25/apple-adds-google-gemini-coding-assistant-in-xcode-26-6-update/ - Five Eyes Warns AI Could Speed Cyberattacks Within Months
Five Eyes agencies warned that AI could speed cyberattacks within months, raising new risks around prompt injection, phishing, and enterprise AI tools. The post Five Eyes Warns AI Could Speed Cyberattacks Within Months appeared first on TechRepublic .
- A Soweto startup’s unlikely journey from gadgets to AI healthcare
Founded in Soweto and backed largely with internally generated revenue and founder reinvestment, Khoi Tech initially built its reputation through consumer devices such as the Khoi Afripods true wireless earphones and the Khoi Afriwatch1 smartwatch.
- Why Google Just Lost 4 Key Staffers to Anthropic and OpenAI
In recent weeks, leaders in the company’s artificial intelligence sector have announced their departures. It’s indicative of a wider trend in the industry.
Score: 68🌐 MovesJun 26, 2026https://www.inc.com/moses-jeanfrancois/why-google-just-lost-4-key-staffers-to-anthropic-and-openai/91365820 - Naver opens AI Tab to all users in push beyond search
Naver on Friday opened its AI Tab to all users on mobile and desktop search, marking a broader push by the Korean internet giant to turn search into a gateway for tasks such as shopping, local discovery and reservations. The AI-powered tab, now available directly on Naver’s main search box, is designed to understand what users are trying to do and connect them to relevant services across the company’s ecosystem, including shopping, maps, places and bookings. Unlike a conventional search feature
- Perplexity Launches Computer for Counsel: A Multi-Model Agentic Layer for Legal Workflows
Perplexity Launches Computer for Counsel: A Multi-Model Agentic Layer for Legal Workflows MarkTechPost
- In Depth: Beneath the Sea, China Tests the Future of AI Power
In Depth: Beneath the Sea, China Tests the Future of AI Power Caixin Global
- Amazon’s fresh bet signals India’s emergence as global AI hub: experts
Big-tech investment reinforces shift from back office to innovation-led AI ecosystem
- A Brazilian Startup Is Betting on AI to Fight Crime. Critics See a Surveillance State
A Brazilian Startup Is Betting on AI to Fight Crime. Critics See a Surveillance State Time Magazine
- How a Niche Technology Became a Choke Point for A.I.
Advanced chip packaging, which boosts computing power for artificial intelligence, has made the United States more reliant on Taiwan than ever.
Score: 68🌐 MovesJun 26, 2026https://www.nytimes.com/2026/06/26/technology/ai-advanced-chip-packaging-tsmc.html - Ukraine plans domestic AI computing capacity with Kyivstar
Ukraine plans domestic AI computing capacity with Kyivstar Reuters
- LexisNexis introduces trusted legal AI for the Middle East, powered by regional legal intelligence
LexisNexis introduces trusted legal AI for the Middle East, powered by regional legal intelligence Gulf News
- WPP, Google Cloud broaden AI research push to power next wave of creativity
WPP and Google Cloud have expanded their strategic partnership with a new frontier research initiative aimed at accelerating the use of artificial intelligence across marketing and creative workflows.The programme builds on their late-2025 cloud and AI alliance and brings together multiple Google units to reimagine the consumer journey, spanning audience intelligence, content creation and campaign measurement.At the core of the collaboration is an effort to combine advanced AI research with scaled, real-world applications embedded within WPP’s systems. The initiative integrates research workstreams directly into WPP’s creative and media processes, enabling teams to deploy emerging tools across client engagements more quickly.The companies said the approach is designed to ensure that advances in AI are closely tied to human creativity rather than operating in isolation.One of the early use cases of the partnership involved Duracell, where WPP worked with Google DeepMind to address a complex creative challenge for a global football campaign. The teams developed a generative media solution that allowed the Duracell Bunny to be lip-synced seamlessly across multiple languages. The system adapted the character’s expressions and mouth movements while maintaining brand consistency and avoiding visual distortions typically associated with generative outputs. Marco Montanaro, MarketingDirector at Duracell, said the collaboration enabled the brand to engage authentically across markets while pushing creative boundaries during a major sporting moment.Beyond creative production, the partnership has also focused on advancing marketing intelligence. WPP research teams have deployed AlphaEvolve, a Gemini-powered agentic framework, to automate aspects of predictive modelling. The system can propose, test and refine model architectures, leading to improvements of up to 10% in prediction accuracy and a 7% increase in recommendation performance compared with existing benchmarks, while reducing the time required for experimentation.The collaboration further extends into real-time data integration and cultural forecasting. By incorporating live environmental signals such as weather, air quality and mobility patterns into WPP Open, brands can design hyper-local, dynamically personalised campaigns and validate media strategies against detailed population-level insights.In parallel, the jointly developed Cultural Intelligence Engine uses multimodal and geospatial AI to detect early social signals, group them into cultural patterns and project their spread across cities and sectors, helping marketers anticipate emerging trends.Giuliana Coli, VP of Strategic Partnerships at WPP, said the initiative reflects a belief that the next phase of AI-driven creativity will centre on human-led innovation supported by advanced research.Eleni Shaw, Principal Lead at Google DeepMind, added that the partnership creates a feedback loop between frontier research and practical applications, accelerating outcomes for both organisations and their clients.
- New agentic memory framework uses 118K tokens per query. LangMem burns through 3.26M.
Long-horizon reasoning exposes a core weakness in AI agents: context windows fill up fast, and retrieval pipelines return noise instead of signal. To solve this, researchers at the National University of Singapore developed MRAgent , a framework that abandons the static "retrieve-then-reason" approach. Instead, it uses a mechanism that allows an agent to dynamically develop its memory based on accumulating evidence. This multi-step memory reconstruction is integrated into the reasoning process of the large language model (LLM). While not the only framework in this space, MRAgent significantly reduces token consumption and runtime costs compared to other agentic memory management approaches. The limits of passive retrieval in long-horizon tasks In classic retrieval pipelines, documents are retrieved through vector search or graph traversal and passed on to an LLM for reasoning. This passive approach fails because it cannot combine reasoning with memory access, creating three major bottlenecks: These systems cannot revise their retrieval strategy mid-reasoning. If an agent fetches a document and discovers a crucial missing cue — a specific date or person — it has no way to issue a new query based on that finding. Fixed similarity scores and predefined graph expansions return surface-level matches that flood the LLM's context window with irrelevant noise, degrading reasoning. Current systems rely heavily on pre-constructed structures such as top-k results and static relevance functions, limiting the flexibility required to scale across unpredictable, long-horizon user interactions. The researchers argue that to overcome these limitations, developers must shift toward an “active and associative reconstruction process,” a concept inspired by cognitive neuroscience. Under this paradigm, memory recall unfolds sequentially rather than operating as a passive read-out of a static database. The system starts with small, specific triggers from the user's prompt, such as a person's name, an action, or a place. These initial hints point to connecting concepts or categories instead of massive blocks of text. By following these metadata stepping stones, the agent gathers small pieces of evidence one by one. It uses each new piece of information to guide its next step until it successfully pieces together the full, accurate story. How MRAgent implements active memory reconstruction Instead of viewing memory as a static database, MRAgent (Memory Reasoning Architecture for LLM Agents) treats it as an interactive environment. When processing a complex query, the agent uses the backbone LLM’s reasoning abilities to explore multiple candidate retrieval paths across a structured memory graph. At each step, the LLM evaluates the intermediate evidence it has gathered and uses it to iteratively optimize its search. It infers new search constraints, pursues the paths with the best information, and prunes irrelevant branches. This allows MRAgent to piece together deeply buried information without filling the LLM’s context with noise. To make this active exploration computationally efficient and scalable, the framework organizes its database using a “Cue-Tag-Content” mechanism. This operates as a multi-layered associative graph with three node types: Cues : Fine-grained keywords, such as entities or contextual attributes extracted from user interactions. Content: The actual stored memory units. These are divided into multi-granular layers, such as episodic memory for concrete events and semantic memory for stable facts and user preferences. Tags: Semantic bridges that summarize the relational associations between specific Cues and Content. This structure enables a highly efficient two-stage retrieval process. The LLM first navigates from Cues to candidate Tags. Because Tags explicitly expose the semantic relationships and structural associations of the data, the agent evaluates these short summaries to judge their relevance. The LLM identifies promising traversal paths and discards irrelevant branches before spending compute and prompt tokens to access the detailed, heavy memory contents. For example, a user might ask an AI agent, "How did Nate use the prize money when he won his third video game tournament?" MRAgent first extracts fine-grained starting cues from the prompt, such as "Nate," "video game tournament," and "win." The agent maps these initial cues to the memory graph and looks at the available associative Tags connected to them. The agent sees tags like "Tournament Victory" and "Tournament Participation.” Since it is only concerned with what the person did after they won the championship, MRAgent drops the tournament participation tag and pursues the victory tag. The agent retrieves the episodic content linked to the chosen Cue-Tag pair, retrieving three distinct memory episodes where Nate won a tournament. MRAgent looks at the three memories, decides one of them in particular is relevant to the query, and discards the other two. With this information, it updates its cues and starts another round of discovery and pruning. From the new episodic memory it has retrieved, the agent adds “tournament earnings” to its cues and uses that to traverse new tags and home in on new memories. It repeats this process until it gathers enough information to answer the query, which could be something like “Nate saved the money.” MRAgent performance on industry benchmarks MRAgent operates alongside several other frameworks addressing agentic memory building. Alternatives include A-MEM , a graph-based agentic memory framework, and MemoryOS, a hierarchical memory framework. Other persistent memory frameworks include LangMem and Mem0 . The researchers tested MRAgent on the LoCoMo and LongMemEval industry benchmarks. These test the abilities of agents to resolve queries on long-horizon tasks and conversations across dozens of sessions and hundreds of turns of dialogue. The backbone models used were Gemini 2.5 Flash and Claude Sonnet 4.5. The system was tested against standard RAG, A-MEM, MemoryOS, LangMem, and Mem0. MRAgent consistently outperformed every baseline across both models and all question types by a significant margin. However, for enterprise developers, the most critical metric is often computational cost. In the LongMemEval tests, MRAgent slashed prompt token consumption to just 118k per sample. By comparison, A-Mem consumed 632k tokens, and LangMem burned through 3.26 million tokens per query. MRAgent also effectively halved the runtime compared to A-Mem, dropping from 1,122 seconds to 586 seconds. What makes MRAgent efficient in practice is its on-demand behavior. Evaluating tags and pruning irrelevant paths before retrieval saves money and context space. Furthermore, the system autonomously evaluates its accumulated context and inherently knows when to stop searching, completely avoiding redundant data exploration. Implementation and development catch While MRAgent is highly effective, the Cue-Tag-Content structure needs to be prepared before the agent can query it. Developers must figure out how to architect the underlying memory database to enable the LLM to efficiently navigate associative items and prune irrelevant paths without exploding compute costs. Fortunately, developers do not have to manually label or structure this data. The authors designed MRAgent with an automated distillation pipeline that uses LLMs to process raw interaction histories and automatically populate the memory graph. For a developer, the job is to implement and orchestrate this automated ingestion pipeline, rather than manually tag data. You need to set up a background job or streaming pipeline that passes raw user interactions through prompt templates to extract this metadata before storing it in your graph database. However, the authors emphasize that this is a lightweight construction phase and MRAgent intentionally keeps ingestion simple. The authors have released the code on GitHub .
- Waymo expands robotaxi ambitions to Germany after London, Tokyo
Waymo expands robotaxi ambitions to Germany after London, Tokyo Automotive News
Score: 66🌐 MovesJun 26, 2026https://www.autonews.com/technology/mobility/ane-waymo-germany-robotaxis-autonomous-0626/ - Takeda's 1st female CEO leans into AI to shape biopharma business
Takeda's 1st female CEO leans into AI to shape biopharma business Nikkei Asia
- A single config file in a cloned repository could steal your AWS credentials through Amazon Q Developer
A high-severity flaw in Amazon Q Developer allowed a malicious code repository to silently execute commands on a developer’s machine and steal their AWS credentials. Wiz Research discovered the vulnerability, tracked as CVE-2026-12957, and reported it to Amazon on April 20. Amazon patched the issue on May 12, and the disclosure went public today. The […] This story continues at The Next Web
Score: 66🌐 MovesJun 26, 2026https://thenextweb.com/news/amazon-q-developer-mcp-flaw-aws-credentials-stolen - Artificial skin enables robots to simultaneously sense temperature and pressure like humans
A research team led by Prof. Seung Hwan Ko of Seoul National University College of Engineering's Department of Mechanical Engineering has developed an artificial skin technology that enables robots to sense temperature and pressure simultaneously, similar to human skin.
Score: 66🌐 MovesJun 26, 2026https://techxplore.com/news/2026-06-artificial-skin-enables-robots-simultaneously.html - Tesla settles FSD crash lawsuit as federal investigations continue
The lawsuit was connected to a fatal 2023 crash involving a vehicle using the company's advanced driver assistance system known as Full Self-Driving.
Score: 66🌐 MovesJun 26, 2026https://techcrunch.com/2026/06/26/tesla-settles-fsd-crash-lawsuit-as-federal-investigations-continue/ - China keeps an eye on AI smart glasses as privacy concerns come into focus
China has issued the first industry code of conduct for smart glasses powered by artificial intelligence, following public outrage over videos taken by users covertly filming strangers with the increasingly popular devices. The voluntary code calls on smart eyewear manufacturers to adopt a “minimum data collection” approach, provide clear indicators when cameras or microphones are active, and obtain explicit user consent before recording. The guidelines were released on Thursday by the China...
- DoT’s technical wing is forming a working group for AI Standardisation
DoT's technical arm TEC has launched a National Working Group on AI standardisation and invited nominations from stakeholders until July 7. The post DoT’s technical wing is forming a working group for AI Standardisation appeared first on MEDIANAMA .
- The AI factory: the rewiring of India's tech industry
Outsourced data services may not be enough for India to thrive in the AI era
- OpenAI and Anthropic face new AI reality as users shift from 'tokenmaxxing' to efficiency
Companies are tightening their AI budgets to focus on getting a return on their investment, and that could dampen growth rates at OpenAI and Anthropic.
Score: 65🌐 MovesJun 26, 2026https://www.cnbc.com/2026/06/26/openai-anthropic-new-ai-spending-reality-as-users-shift-to-efficiency.html - AI Is Freezing Entry-Level Hiring More Than Cutting Jobs, Peking University Researcher Says
AI Is Freezing Entry-Level Hiring More Than Cutting Jobs, Peking University Researcher Says Caixin Global
- Japan’s Sakana Fugu Beats Opus 4.8 and GPT-5.5 by Conducting Them, Not Replacing Them
While everyone waits for the next giant model, a Tokyo lab took a different path. Sakana AI’s new system, Fugu, is not a frontier model at all. It is a conductor, a small model trained to coordinate the frontier models from OpenAI, Google, and Anthropic, route each task to the right one, and combine their answers. The surprising part is the result, the orchestrated team beats every individual model it directs, and stands shoulder to shoulder with the very best. Here is how it works, what the benchmarks actually show, and the honest caveats. The dominant move in AI for years has been to build a bigger model. More parameters, more data, more compute, a single larger brain that answers your questions directly. On June 22, 2026, the Tokyo lab Sakana AI shipped something that does not fit that mold at all, and the benchmark numbers it posted are worth understanding precisely because the thing producing them isn’t what you’d expect. Sakana’s new system is called Fugu, and the first thing to get straight is what it is, because it’s easy to misread. Fugu isn’t a frontier model competing with the giants. It’s an orchestrator, a model whose entire job is to coordinate other models. You send it a request, and rather than answering directly, it decides which of the leading frontier models should handle which part of the task, routes the work to them, and synthesizes their outputs into a single answer. The models it conducts are the strongest ones available, Claude Opus 4.8, GPT-5.5, and Gemini 3.1 Pro. Fugu itself is the conductor, not the musician, and that distinction is the whole story. What an orchestrator actually is The clearest way to understand Fugu is by contrast with a normal model. When you use a standard model like Opus 4.8 or GPT-5.5, you are talking to one system that was trained to answer you. One brain, one response. Fugu works differently. It’s a small language model trained for a single skill, coordination. Faced with your request, it dynamically assembles a plan, figures out which model in its pool is best suited to each piece of the problem, delegates accordingly, checks and combines what comes back, and returns one synthesized answer. The intelligence Fugu adds isn’t in answering, it’s in knowing which expert to ask and how to combine their work. The analogy that fits is a project manager with a roster of top specialists on call. The manager doesn’t personally do every task. They route each part to the expert best suited for it, then assemble the results into one coherent deliverable. Fugu is that manager, and Opus, GPT-5.5, and Gemini are the specialists. When you use Fugu, you are quietly using all of them, coordinated. If that pattern sounds familiar, it should. It’s the same idea behind the multi-model setups a growing number of developers are building by hand, one component plans and routes, others execute. Fugu is that concept built into a polished, trained product by a research lab, and then benchmarked against the giants it coordinates. The result that makes it interesting Here is the part that turns a clever architecture into a real story. By coordinating those frontier models well, Fugu scores higher than any of those same models can score on their own. That’s the claim worth sitting with. The orchestrated team beats each of its individual members. Sakana evaluated Fugu against the exact models in its pool, with the same maximum reasoning effort, and the top variant came out ahead on most of the hard benchmarks. The numbers below are Sakana’s own reported figures, and they tell the story clearly. On SWE-Bench Pro, a demanding test of fixing real software bugs in production repositories, Fugu-Ultra scores 73.7, ahead of Opus 4.8 at 69.2, GPT-5.5 at 58.6, and Gemini 3.1 Pro at 54.2. On Terminal Bench 2.1, a test of agentic coding in a real terminal environment, Fugu-Ultra reaches 82.1, ahead of GPT-5.5 at 78.2, Opus 4.8 at 74.6, and Gemini at 70.3. On LiveCodeBench it posts 93.2, on GPQA-Diamond, a set of graduate-level science questions, it hits 95.5, and on a string of other reasoning and coding benchmarks it leads the pool. Across the published table, the top Fugu variant leads on the large majority of the benchmarks over every model it directs. The team, well conducted, beats the soloists. The full benchmark table Here is Sakana’s published comparison, so you can see the whole picture, including where the individual models still win. All figures are Sakana-reported. Read the table and you can see the pattern and its limits at once, the top Fugu variant leads most rows, but GPT-5.5 takes MRCRv2, Opus 4.8 edges CTI-REALM, and on a few benchmarks standard Fugu even beats Ultra. Two versions, fast and all-out Fugu comes in two flavors, and the difference is how hard each works. The standard Fugu is built for speed and lower cost. It coordinates the pool efficiently, calling fewer models per task for a faster, cheaper answer, and it uses dynamic pricing based on which models it actually activates. It’s the version for everyday, latency-sensitive work, the manager who quickly hands a task to the one right expert and gets you a fast result. Fugu-Ultra is built for the hardest problems, where you want the best possible answer regardless of speed. It uses a larger pool of models per query and has them do more cross-checking and synthesis, squeezing out maximum quality at the cost of higher latency and fixed pricing. It’s the manager who convenes the whole expert panel on a tough problem and assembles the strongest combined result. That difference shows up directly in the scores, Fugu-Ultra generally outscores standard Fugu on the hardest tests, 73.7 versus 59.0 on SWE-Bench Pro for instance, because the extra coordination pays off. Interestingly, it’s not universal, on a few benchmarks standard Fugu edges out Ultra, which is a useful reminder that more coordination is not automatically better, sometimes the lighter approach happens to route a given task more effectively. The honest caveats This is a genuinely impressive result, but a careful reading requires three honest qualifications, and leaving them out would be selling the story rather than telling it. First, these are vendor-reported numbers. Sakana ran the evaluations and published the table, and as of now no independent third-party lab has reproduced them. That doesn’t make them wrong, but it makes them claims to validate rather than settled fact, and the right response to any vendor benchmark is to test it on your own workload before trusting the headline. Second, an orchestrator’s score answers a slightly different question than a single model’s. When Fugu-Ultra posts a high number, that reflects the whole system, the routing, the delegation, the synthesis, and the raw power of the pool underneath. A strong score can come from excellent coordination as much as from any single model’s ability, which is exactly what Fugu is built to do, but it means you are measuring a system, not a model, and the comparison should be read in that light. Third, the wins are not a clean sweep, and the most important detail is one Sakana itself is careful about. Sakana doesn’t claim Fugu beats Anthropic’s top model, Fable 5. Its own framing is that Fugu stands shoulder to shoulder with it, and on the hardest coding benchmark, SWE-Bench Pro, Fable 5 still leads clearly, scoring well above Fugu-Ultra on that test. There are other places the soloists win too, GPT-5.5 leads the long-context recall test, and Opus 4.8 edges ahead on a cybersecurity benchmark. An orchestrator is ultimately bounded by the models it has to work with, and where the best single model is exceptional, coordination doesn’t always close the gap. The accurate summary isn’t that Fugu beats everything, it’s that it reaches the frontier by a route nobody else took. Why this matters Step back and the significance is not really about one lab’s leaderboard. It’s about the bet underneath it. The entire industry has poured its resources into making single models bigger. Sakana built a system that, without training a frontier model of its own, reaches frontier-level results by coordinating the models that already exist, and on a number of hard tasks beats each of them individually. That’s a meaningful piece of evidence for an idea that has been gaining ground, that the next gains in AI may come as much from orchestration as from scale. It also lands at a practical moment. The same coordinate-multiple-models pattern is something developers are increasingly building themselves, and Fugu shows what it looks like when a research lab takes that pattern seriously, trains a real model to do the conducting, and pushes it to the frontier. Whether orchestration ultimately rivals raw scale or merely complements it is still an open argument, and the vendor-reported caveat means the numbers deserve scrutiny rather than applause. But the approach is real, the results are striking, and the larger point is hard to ignore. Japan’s most interesting answer to the frontier labs wasn’t to build a bigger brain. It was to build something that makes the existing brains work together, and to show that, conducted well, the team can beat the soloists. If you work with multi-model systems or have a view on whether orchestration genuinely reaches the frontier or just borrows it from the models underneath, I would be interested to hear it in the comments. And if you test Fugu against your own workload, the real-world results are worth far more than any vendor benchmark table. Resources The Sakana Fugu technical report, with the full benchmark table and method: https://arxiv.org/html/2606.21228v1 Sakana AI’s Fugu announcement and the orchestrator design: https://sakana.ai/fugu-beta/ VentureBeat’s coverage of the Fugu launch and what the numbers do and do not show: https://venturebeat.com/orchestration/no-claude-fable-5-no-problem-sakana-achieves-frontier-performance-with-new-fugu-multi-model-auto-synthesis-system A plain-language breakdown of the Fugu benchmarks and the caveats: https://www.datacamp.com/blog/sakana-fugu Japan’s Sakana Fugu Beats Opus 4.8 and GPT-5.5 by Conducting Them, Not Replacing Them was originally published in Towards AI on Medium, where people are continuing the conversation by highlighting and responding to this story.
- ByteDance's AI Engine Roars Ahead But Compute Costs Crush Margins
ByteDance's Doubao hits 200M DAU and 180 trillion daily tokens, but compute costs may exceed RMB 200 billion in 2026 as MaaS revenue targets soar 10x.
Score: 65🌐 MovesJun 26, 2026https://pandaily.com/bytedance-ai-compute-costs-crushing-margins-jun2026 - Supply chain expo: Car chip race intensifies as AI debuts
Supply chain expo: Car chip race intensifies as AI debuts
- Aseon Labs raises ten million dollars to build parking-space-sized pods that charge and clean robotaxis
Aseon Labs, a Redwood City startup building automated service pods for robotaxi fleets, has raised ten million dollars in a seed round led by Crane Venture Partners, TechCrunch has learned. Y Combinator, Uber co-founder Garrett Camp’s venture firm Expa, Robin Hood Ventures, and Founders Capital also participated, alongside angel investors including Mercury founder Immad Akhund, […] This story continues at The Next Web
Score: 65💰 MoneyJun 26, 2026https://thenextweb.com/news/aseon-labs-10m-robotaxi-pit-stop-pods-deadhead-miles - Tech bills of the week: Labeling AI-generated content; AI standards for private sector companies; and more
This week’s proposals include a measure to create a reporting process for dangerous AI systems and legislation to collect data on AI’s impact on the U.S. workforce.
- Adobe to buy Addison's Topaz Labs as it expands AI capabilities
The acquisition expands Adobe's Firefly generative AI tools and brings expertise in AI models that run on local devices rather than relying on cloud computing.
Score: 65🌐 MovesJun 26, 2026https://www.bizjournals.com/dallas/news/2026/06/26/adobe-topaz-labs-acquisition.html?ana=brss_6150 - Google wants AI regulation, but on its own terms
Surely, we can have rules that allow us to continue doing what we're doing
Score: 65🌐 MovesJun 26, 2026https://www.theregister.com/ai-and-ml/2026/06/26/google-wants-ai-regulation-but-on-its-own-terms/5263276 - New pilot trials AI-powered translations of online govt resources in Chinese, Malay and Tamil
New pilot trials AI-powered translations of online govt resources in Chinese, Malay and Tamil The Straits Times
- Safexpress builds an AI-first logistics backbone to orchestrate India’s complex supply chain network
As India’s logistics ecosystem evolves into a digitally orchestrated, always-on network, transportation companies are increasingly reimagining how intelligence, automation, and real-time decision-making can redefine operational efficiency at scale. For organisations […] The post Safexpress builds an AI-first logistics backbone to orchestrate India’s complex supply chain network appeared first on Express Computer .
- Hexaware Becomes Anthropic Authorized Reseller for Amazon Bedrock
Hexaware Technologies today announced that it has been named an Anthropic authorised reseller for Amazon Bedrock, joining a select group of companies worldwide authorised to resell Claude. Under the agreement, Hexaware can sell, integrate, and support Claude models—directly to enterprise clients worldwide—deepening Hexaware’s commitment to delivering transformative, responsible AI solutions. By bringing Claude directly to its […] The post Hexaware Becomes Anthropic Authorized Reseller for Amazon Bedrock appeared first on CXOToday.com .
- AMC Robotics to build US$3.5M Vietnam factory as SEA automation race heats up
China-affiliated AMC Robotics Corporation will invest US$3.5 million to build out and equip a new manufacturing facility in Vietnam’s Bac Ninh province, marking its first major production foothold in Southeast Asia as the region’s factories and warehouses gradually move towards automation. The company said it has signed a lease agreement for a 6,150-square-metre facility in […] The post AMC Robotics to build US$3.5M Vietnam factory as SEA automation race heats up appeared first on e27 .
Score: 64🌐 MovesJun 26, 2026https://e27.co/amc-robotics-to-build-us3-5m-vietnam-factory-as-sea-automation-race-heats-up-20260626/ - An REI Ad Went Viral for All the Wrong Reasons. The Company Says Meta AI Is Responsible
The retailer apologized and said, “This does not align with our values.”
- Anthropic Economic Index report: Cadences
Anthropic Economic Index report: Cadences
- AI Decline? Confidence in Autonomous Penetration Testing Falls
Companies are still experimenting with automated AI systems to find security weaknesses, but fewer are relying on the technology.
Score: 63🌐 MovesJun 26, 2026https://www.darkreading.com/cybersecurity-operations/ai-decline-confidence-autonomous-penetration-testing - AI boom may be on its last legs but will first surge in a 'blow-off phase' before bubble pops
AI boom may be on its last legs but will first surge in a 'blow-off phase' before bubble pops Fortune
- How Databricks is turning video into searchable, actionable intelligence
A utility company deploys drones to inspect hundreds of miles of power lines. A police...
Score: 62🌐 MovesJun 26, 2026https://www.databricks.com/blog/how-databricks-turning-video-searchable-actionable-intelligence - AI levels the playing field as IT giants target mid-market game
With the disruption that artificial intelligence has brought, mid-market companies have now accelerated tech spending, creating scalable opportunities. The focus on the mid-market is also a result of a slowdown in deals in the traditional strongholds of America, as well as key sectors like banking, due to economic uncertainty and geopolitical crises.
- F5 expands further into AI security with SurePath AI acquisition
F5 is buying SurePath AI, a Denver startup that helps companies find the AI tools their own employees are using, and folding it into a growing lineup of AI security products. CEO François Locoh-Donou explained the strategy on this weekend's GeekWire Podcast. Read More
Score: 62💰 MoneyJun 26, 2026https://www.geekwire.com/2026/f5-expands-further-into-ai-security-with-surepath-ai-acquisition/ - As Spotify embraces AI, Deezer will let you remix songs with artist consent and royalties
Deezer’s Remix Lab is a new in-app feature launching first in France that lets fans remix select songs with artist approval, rights compliance, and compensation for every stream
- Why private AI is the smarter bet
Why private AI is the smarter bet InfoWorld
Score: 61🌐 MovesJun 26, 2026https://www.infoworld.com/article/4189649/why-private-ai-is-the-smarter-bet.html - South Korea plans to train entire military as "drone warriors"
Half-million strong military will train on drones as “universal combat tool.”
Score: 61🌐 MovesJun 26, 2026https://arstechnica.com/ai/2026/06/south-korea-plans-to-train-entire-military-as-drone-warriors/ - Gemini gains the power to help find and install Google Play apps right in chat
Stop scrolling and just ask Gemini to find Play Store apps for you.
Score: 61🌐 MovesJun 26, 2026https://www.androidauthority.com/google-play-connected-app-for-gemini-rollout-3681969/ - Apple’s Vision Pro and Smart Glasses Chief to Join OpenAI
Apple Inc.’s top executive in charge of the Vision Pro headset and the company’s smart glasses efforts is leaving for OpenAI, continuing a streak of high-profile defections to rivals in the artificial intelligence and hardware sectors.
- Courtroom Camera Bills Prompt Questions About AI-Driven Analyses of Judges
“The more useful question isn't whether to allow cameras, it's whether we authenticate the record well enough that a genuine clip can always be told apart from a fabricated one," wrote attorney Michael McCready. Related Stories Former Judges Offer No Easy Answers on Presidential Pardons ‘Doing Refining': DC Circuit Judge Katsas Talks Future of Originalism 5th Circuit Judge Ho, Once Again, Tops List of Most Prolific Writers of Dissents, Concurrences
- Amazon just made a key AI cloud service more expensive
Amazon just made a key AI cloud service more expensive Business Insider
Score: 60🌐 MovesJun 26, 2026https://www.businessinsider.com/amazon-raises-ai-cloud-prices-memory-chip-costs-soar-2026-6