AI News Archive: August 7, 2026 — Part 3
Sourced from 500+ daily AI sources, scored by relevance.
- Airbnb hits four-year high as investors cheer revenue forecast raise, AI payoff
Airbnb hits four-year high as investors cheer revenue forecast raise, AI payoff Reuters
- China Pushes AI Compute Into Orbit, and the Satellites Start Doing Their Own Thinking
In late July, a satellite called Chenguang-1 carried an eight-card server into orbit from the Dongfeng commercial space innovation test zone, marking a new step in China's space-based compute push. Industry experts say the country now sits in the global first tier for orbital compute.
Score: 60🌐 MovesAug 7, 2026https://pandaily.com/china-orbital-compute-chenguang-1-satellite-zhongke-tiansuan-aug2026 - Chinese AI boom sends Hong Kong data center prices soaring
Chinese AI boom sends Hong Kong data center prices soaring The Japan Times
Score: 60🌐 MovesAug 7, 2026https://www.japantimes.co.jp/news/2026/08/07/asia-pacific/ai-hong-kong-data-center/ - Cloudflare launches Kitesurf, a browser built for AI agents
Kitesurf is a cloud-hosted browser designed for AI agents instead of people. It uses less computing power than Chromium for common automation tasks, helping developers build browser-based AI agents more efficiently.
Score: 60🌐 MovesAug 7, 2026https://techcrunch.com/2026/08/07/cloudflare-launches-kitesurf-a-browser-built-for-ai-agents/ - Protesters haul a guillotine to city council meeting about a potential AI data center, company rep cornered by protestors — ‘ it no longer felt safe to stay,’ developer escorted out by police
Some protesters brought a guillotine to public consultation for a potential data center in Salem, Oregon. Even though this was displayed outside the venue, it was a confrontation between the data center's representatives and some of the community members that led the latter to leave early.
- Hivemind AI software carries out first on-water 'swarming test' in Taiwan mission
Hivemind autonomously directed Thunder Tiger drone boats through Taiwan's first coordinated maritime swarming exercise, expanding autonomous defence capabilities at sea.
- Inside Amazon’s AI Security Playbook
Inside Amazon’s AI Security Playbook
Score: 60🌐 MovesAug 7, 2026https://www.wsj.com/pro/cybersecurity/inside-amazons-ai-security-playbook-1305e41d?mod=rss_Technology - AMD, Supermicro and Spectro Cloud unveil enterprise AI coding platform
AMD, Spectro Cloud and Supermicro released a new enterprise solution designed to simplify and control AI-assisted software development.
Score: 59🌐 MovesAug 7, 2026https://www.techmonitor.ai/news/amd-supermicro-and-spectro-cloud-unveil-enterprise-ai-coding-platform - SoftBank’s OpenAI-Backed Loan Highlights Risks in Financing Strategy
SoftBank’s OpenAI-Backed Loan Highlights Risks in Financing Strategy The Information
- Tencent's Team Memory shares AI agent memory across a team — with no governance yet for when it's wrong
A VB Pulse survey this June found that 57% of enterprises had traced a confidently wrong agent answer back to missing or inconsistent context — the latest sign of how central context has become to whether AI agents can be trusted to act on their own. Most of the fixes so far have solved a narrower version of that problem: one agent remembering more, in one session. What's been missing is a way for a team of agents to draw on the same context at once, and that gap is where a newer problem is surfacing. Once an agent's context is shared across a whole team, a wrong fact doesn't cost one person a repeated explanation. It costs the whole team. Tencent's answer to that gap is Agent Memory , an open-source project the team said grew out of six months spent fixing a narrower problem: agents losing context in long sessions. Part of that system is a persona layer, a stable, distilled picture of who a user is and how they work, built up over many conversations rather than reconstructed each time. On Tencent's own benchmark for whether an agent still applies that picture correctly after extended use, accuracy rose from 48% to 76%, a 59% relative improvement, once the persona layer was added. This week, Tencent extended that project with the beta launch of Team Memory, which opens the same approach up to a whole team instead of one agent. Tencent said the repo hit No. 1 on GitHub's TypeScript trending list this week. Agents on a team can now read from a shared memory hub instead of keeping separate, siloed context, governed through an access control layer that determines who can read what. What Team Memory actually does The core idea is a shared hub rather than a shared prompt. Instead of pasting one large context block into every agent's window, Team Memory registers four kinds of reusable assets and equips each agent with only the ones it needs. Chat Memory. Retains preferences, facts, decisions, and interaction history, distilled through four layers, from raw conversation up to a stable long-term persona, so an agent does not need to be reintroduced to a user it has already worked with. Skill. Captures procedures pulled from completed work, versioned and reviewed before they are shared rather than dropped into a folder as-is. LLM-Wiki. Turns documents and specs into structured, linked pages. Code-Graph. Indexes a codebase's symbols, files, and call relationships so an agent can check what a change might affect before making it. Tencent's documentation draws the distinction directly: "RAG answers 'what can be found?' Team Memory also answers 'who can use it, which version is valid, and which Agent should receive it.'" In practice, that's what Tencent calls an "Agent Loadout": a Scout agent doing research can be equipped with market research and competitive analysis assets, while a Builder agent gets the code graph and product docs it needs instead, rather than every agent getting access to everything. Which assets an agent gets equipped with is governed through four visibility tiers: Private. Readable only by the asset's owner. Team. Readable by anyone on the team. Restricted. Gated by user, role, or agent-level access control. Agent. Equipped to one specific agent within a team. New assets default to private, so sharing has to be a deliberate action rather than something that happens automatically. What happens when a memory is wrong That access model answers a real question, who is allowed to read a given memory asset. It does not answer a second one, which is what happens once a memory asset turns out to be wrong. Tencent's own documentation lays out ownership, versioning, and status tracking for each asset, but nothing in the documentation describes a correction or expiry process for a fact that's already been read and reused by other agents on a team, or a way to resolve it when two agents' memories of the same thing disagree. That gap is what practitioners flagged within hours of the launch post. "Shared memory makes the write path the interesting problem. Retrieval gets most of the attention, but a wrong fact written once now propagates to every teammate's agent instead of just yours. Curious how the governance layer handles correction and expiry," Blake Murphy wrote on X. The concern wasn't only about fixing a bad fact after the fact. It was about the decision to leave something out of the record in the first place. "the governed part is the hard part. once teammates' agents can read each other's context, someone has to decide what never gets written down," Virgil Maro wrote on X. Others pushed further into what happens once two agents' memories actively contradict each other, not just go stale. "The Code-Graph plus LLM-Wiki split is the right call. The part I'd want to see benchmarked: in shared mode, whose memory wins when two teammates' agents have written contradicting facts about the same module? Single-agent memory drifts slowly. Shared memory drifts fast, because one stale write propagates to people who never saw the session that produced it," Austin Green wrote on X. The reaction wasn't uniformly critical. "Interesting shift: making memory a shared service turns agents into a real team rather than isolated bots. Governance will be the trickiest part, especially when facts conflict," Moez Zhioua wrote on X. None of these are edge cases specific to Tencent's implementation. A March 2026 paper on production multi-agent memory architecture, "Governed Memory: A Production Architecture for Multi-Agent Workflows," published independently of any single vendor, identifies governance fragmentation and silent quality degradation without feedback loops as structural risks in shared multi-agent memory generally. The pattern the paper describes matches what the commenters above pointed at directly: a wrong fact in a single-agent memory system costs one user a repeated correction, while the same wrong fact in a shared, team-wide memory system propagates to every agent that inherited it before anyone catches it. How Team Memory compares AI agent memory work in 2026 has mostly focused on a single agent remembering more, in one session, about one user: LangChain's LangMem SDK , Google's Always On Memory Agent , and Anthropic's work inside the Claude Agent SDK all work this way. A different line of work has focused on giving agents access to a shared model of business data. VB's own June survey found only 25% of enterprises had that kind of governed context layer in production, while vendors including AWS , Couchbase, Oracle, Redis, and Pinecone have all shipped versions of it this year. Team Memory's closest existing comparison is likely Asana, which built shared memory across a company's AI teammates so an agent doesn't need to be re-briefed on context another agent already has. Asana's CPO described the same tradeoff Tencent's practitioners are now raising, an access control system built specifically to stop one agent's memory from leaking into a project another agent isn't cleared to see . Tencent's version is open-source and portable across frameworks rather than scoped to one platform, but it's answering a question Asana's team already ran into while building a closed one. For teams evaluating this category, the upside is real: agents stop relearning what the team already knows. The tradeoff is just as real: one bad write is no longer contained to one agent — it's inherited by every agent that reads from the shared pool, with no correction or expiry process yet in place to catch it.
- Airbnb says AI is helping it ship features faster as it tests a new search function
Airbnb will debut a new AI-powered search experience with a toggle.
- 'Chameleon' chip adapts to changing data speeds, cutting prediction errors by up to 40-fold
AI semiconductors are becoming more programmable. KAIST researchers have developed a device whose response characteristics can be programmed to process data that changes at different speeds. The technology reduced prediction errors for time-varying data by up to 40-fold and is expected to enhance real-time AI performance in autonomous vehicles, robots and wearable devices.
- Who is liable when AI goes rogue? Lawyers see new risks
Who is liable when AI goes rogue? Lawyers see new risks Reuters
Score: 58🌐 MovesAug 7, 2026https://www.reuters.com/business/who-is-liable-when-ai-goes-rogue-lawyers-see-new-risks-2026-08-07/ - MCP Just Went Stateless. Your Agent Stack Needs to Know.
The 2026–07–28 Model Context Protocol rewrite deletes sessions, renames your imports, and quietly changes the security math — here’s what… Continue reading on Towards AI »
- AI Layoffs at Oracle, Amazon, and Cloudflare All Have One Thing in Common Besides Headcount Reduction
Companies are using AI for different purposes, but each is reconsidering how work should be organized, coordinated, and led.
Score: 58🌐 MovesAug 7, 2026https://www.inc.com/scott-hutcheson/ai-layoffs-amazon-cloudflare/91386604 - Govt-Meta meeting enters technical round on day 3; company lists ways to curb deepfakes, CSAM
After two days of meetings that saw IT Minister Ashwini Vaishnaw questioning Meta's team - led by global affairs head Joel Kaplan - on the content recommendation algorithms and the social media giant's compliance with local laws, day three of discussions was technical.
- Better Hope You Don’t Need an Ambulance in New Orleans, Because the City’s 911 Operators Are Now AI
Your house isn't just on fire — it's collapsing in real time. The post Better Hope You Don’t Need an Ambulance in New Orleans, Because the City’s 911 Operators Are Now AI appeared first on Futurism .
Score: 58🌐 MovesAug 7, 2026https://futurism.com/artificial-intelligence/ai-dispatch-911-new-orleans-emergency-automation - China's AI Infrastructure Race Has Quietly Moved to "Supernodes"
At WAIC 2026, Biren, Yixin Intelligent, Infinigence CoreX, Kunlun Chip and SingularMOL all shipped supernode-scale systems. Single-chip heroics are officially over.
Score: 58🌐 MovesAug 7, 2026https://pandaily.com/waic-2026-china-ai-supernode-biren-yixin-epoch-aug2026 - Europe hails AI gigafactory plan, but industry fears deeper US tech reliance
Aiming to catch up with the United States and China, the European Union has opened bidding for up to seven AI gigafactories, putting up €10 billion (US$11.52 billion) in public money and counting on private investors for €20 billion more. Industry insiders welcomed the tender – modest by AI industry standards and more than a year in the making – as a necessary first step, but warned that the plan as drafted risked benefiting the very American tech giants Europe wanted to rival and that Brussels...
- Q1FY27: Bajaj Finance’s AI bots now handle 71% of DIY customer service, drive Rs 2,500 crores in disbursements
“We are beginning to have confidence to build models using AI, which are faster and give us insight that our… The post Q1FY27: Bajaj Finance’s AI bots now handle 71% of DIY customer service, drive Rs 2,500 crores in disbursements appeared first on MEDIANAMA .
Score: 58🌐 MovesAug 7, 2026https://www.medianama.com/2026/08/223-bajaj-finances-71-customer-service-2500-crores-disbursements/ - OpenAI will bring ChatGPT ads to Brazil and Mexico, and is adding a raft of fresh features
OpenAI will bring ChatGPT ads to Brazil and Mexico, and is adding a raft of fresh features Business Insider
Score: 58🌐 MovesAug 7, 2026https://www.businessinsider.com/openai-ad-upgrades-chatgpt-ramps-up-global-reach-2026-8 - 'Big Short' investor Michael Burry bets against AI stars Oracle, Nebius
'Big Short' investor Michael Burry bets against AI stars Oracle, Nebius Business Insider
Score: 58🌐 MovesAug 7, 2026https://www.businessinsider.com/big-short-michael-burry-oracle-nebius-ai-stocks-data-centers-2026-8 - China is gaining ground in AI. But the U.S. still has a major advantage
Chinese AI companies have made recent leaps in closing the performance gap with U.S. frontier labs.
Score: 58🌐 MovesAug 7, 2026https://www.cnbc.com/2026/08/07/china-us-ai-race-hugging-face-models.html - Tech Bills of the Week: Deterring AI distillation; Taxing AI developers; and more
This week’s bills addressed how to fortify the U.S. AI ecosystem through penalizing adversaries for model distillation, taxing large developers for AI-driven layoffs, and more.
- Energy company sues data center over who should pay for AI buildout
At issue is who pays to expand energy infrastructure when a data center needs as much electricity as a midsize city.
- Cloudflare wants to provide the operating system for the AI-first enterprise
Traditional operating systems (OS) were built to manage hardware, files, apps, and users on a device, but Cloudflare says the agentic AI era requires a whole new format. The company this week announced Cloudflare OS , which connects AI agents, enterprise data and context, internal systems, and workflows together in one secure workspace. It is open source and browser-based, sparing companies the need to build all-new infrastructure. The OS is launching alongside several other new security, identity, spending, and user insight tools that Cloudflare has built for the AI-based workplace . “Cloudflare OS isn’t a traditional desktop OS,” said Rita Kozlov , VP of product at Cloudflare. “It reimagines the workplace computing environment for AI.” Open source OS runs in a browser Cloudflare OS serves as a secure, AI-equipped workspace that is plugged into internal company systems. Available now through Cloudflare’s open source repository, it is accessible directly in a browser, and runs inside an enterprise’s Cloudflare account. “It is a browser-based workspace that begins with a conversation,” Kozlov explained. Users can ask an agent to research, create slides, spreadsheets, and documents, build full-stack apps, or automate workflows without the need for a terminal. Those outputs are then shareable, but kept in isolated databases with access controls. Enterprises will soon be able to access the OS directly through Cloudflare or via a “select group” of partners that will build tailored offerings on Cloudflare’s architecture, the company says. Because it is open source, organizational processes, internal system connections, and context aren’t locked into a vendor product or AI model provider. Customers can use whatever models they choose. Cloudflare OS is built on Cloudflare Workers, Dynamic Workers , Durable Objects, and Access, the company’s zero trust network access (ZTNA) tool that verifies every user and request. Agents start with zero permissions by default and are only granted access to tools required for a specific task. Organizations configure their own Access policies, models, branding, skills, and integrations, Kozlov explained. Governed connectors known as gatekeepers give admins control over what AI can see, what it can change, and when the system needs human sign-off. They can also control budgets, set rate limits, and delegate tasks to different models. “Because agents act on people’s behalf and produce work others can access and modify, they require a new security model,” Kozlov said. Thus, Cloudflare OS tracks the resources an agent requires so the right access controls follow its work when it is shared. Cloudflare initially built the OS for internal use, and employees “across every team” use it daily. Kozlov estimated that, over the last 30 days, internal users have used it to create more than 4,000 apps, automations, and tools. Over that same period, she claimed, the company’s sales team saved an estimated 10,000 hours by automating previously manual tasks like territory planning and proposal creation. “We open sourced Cloudflare OS so any organization can build ‘Your Company OS,’” Kozlov said. Open source is critical because “you cannot put your company into software you do not own. Organizations need to be able to inspect the platform, customize it, connect their own systems, and make it their own,” she explained. A more cohesive bundle Cloudflare deserves credit for packaging Cloudflare OS as an operating system, noted tech analyst Carmi Levy . “This very much is not Windows, macOS, or Linux, and it isn’t an operating system by its common definition,” he said. “But Cloudflare’s use of this terminology implies familiarity to enterprise IT buyers.” This makes for an easier discussion as enterprises struggle to understand how to best incorporate AI-related platforms and workflows into infrastructure that wasn’t initially designed for it. Microsoft has marketed the combination of its Azure, Entra, Fabric, Windows, and Microsoft 365 offerings as an operating system of sorts, but hasn’t pulled all the pieces into a common brand, Levy said. And Google’s Gemini, Workspace, Vertex AI, and Cloud Run are “circling similar territory.” But, he noted, Cloudflare OS is “more cohesively bundled” and infrastructure-focused, offering a single pane of glass platform for buyers worried about stitching together otherwise disparate AI-aware networking pieces. The company recognizes that AI introduces new architectural realities such as inference and model routing “over and above” traditional OS core competencies. “While competing offerings generally leave the infrastructure heavy lifting to enterprise decision-makers, Cloudflare is marketing itself as a single-source vendor, which potentially frees IT planners from having to integrate all the AI pieces on their own,” Levy said. An infrastructure-first, application-agnostic approach means Cloudflare OS can coexist with whatever AI applications already exist in an enterprise, he said. It will “play nice” with OpenAI, Anthropic, Google, Microsoft, Meta, or open source layers, allowing employees to begin working in familiar workflows after sign-in. “Its open-source architecture also minimizes the potential for vendor lock-in as enterprises gradually figure out how to evolve their stacks to align with new AI-era realities,” Levy said. Managing identities and budgets for both humans and AI As AI agents emerge across the enterprise, tracking their use can be challenging, causing problems from both a security and a spend standpoint. Along with Cloudflare OS, the company has launched a way to address this issue with its new Identity-Aware AI Gateway , now in beta. Also integrated with Access, the offering gives admins visibility into what users (both human and AI) are requesting from AI models. It allows security teams to set up custom domains in front of their gateways and replace shared API keys by integrating with their identity provider, like Okta or Entra, and ZTNA infrastructure, Cloudflare explained. Every request is tied to Access-verified identities, and enterprises can filter each user’s logs, analytics, and spend. IT teams can track redundancies, limit usage rates, and apply filters that strip out employee names, passwords, and other sensitive data before requests go to outside model providers. A companion feature, AI Spend, tracks every user’s behavior over time to create a baseline of normal AI usage. When spending deviates from that pattern, the system alerts the IT team. A new tab, User Insights, tracks cost and identifies over-spend caused by activities such as low cache-hit rates or oversized context windows. The capability scores sessions and compares them against account history using a 95th percentile session cost over the previous 30 days, Cloudflare product managers Ming Lu , Kenny Johnson , and Ayush Kumar explain in a blog post . Anything above 2x an account’s 95th percentile is a “strong candidate for anomalous behavior.” For instance, one Cloudflare customer had an employee who left a rogue AI session running, generating a $30K bill. “User Insights helped them identify the problem and shut off access before the problem was further exacerbated,” Kozlov said. Cloudflare is also building prompt classification functionality that sorts requests into categories such as coding or writing. This can help enterprises understand what AI is being used for. “Once business traffic is separated from everything else, personal use becomes visible,” the project managers explained. “From the outside, someone running a side hustle on company time and someone quietly moving data out through a model look the same. Telling them apart is central to catching insider risk.” Looking at the bigger picture Identity-Aware AI Gateway and AI Spend address the visibility problem that has dogged so many recent AI deployments where enterprises failed to monitor usage, Levy noted. Projects “crashed and burned” as users unwittingly blew through token allocations. These platforms provide single-point visibility into what is being used, how it’s being used, and where the potential lies for raising the productivity bar, he said. They overlay with existing models; in doing so, they enhance security with more precise control over resource allocations, and via automated anonymization protocols that prevent inadvertent sharing of sensitive data. Ultimately, he said, vendors who free IT from having to independently assemble the pieces of their own AI implementations, and who assist them with answers to AI-specific questions, “will gain advantage over vendors that aren’t looking at the bigger picture.
- OpenAI settles DOJ allegation it shut US workers out of lucrative jobs
OpenAI allegedly didn’t advertise certain jobs on its external website and or let U.S. workers apply online, according to the settlement.
Score: 56🌐 MovesAug 7, 2026https://www.hrdive.com/news/openai-settles-doj-allegation-it-shut-us-workers-out-of-lucrative-jobs/827361/ - Managed Deep Agents is now in Public Beta
LangChain announces the public beta release of Managed Deep Agents, enabling easier deployment of AI agents.
Score: 56🌐 MovesAug 7, 2026https://blog.langchain.dev/blog/managed-deep-agents-is-now-in-public-beta - WhatsApp scam costs Hong Kong man $1.27 million after criminals used AI voice notes to impersonate his father — experts say secret codewords are the best way to stay safe
Scammers used AI to steal $1.27 million from a Hong Kong man as experts say a secret codeword can keep you safe.
- Google Maps Gets New Gemini Agent Features for Orders, Hotels, and Events
Google is adding agentic AI and Personal Intelligence to Maps, helping users plan, order, and discover while keeping final approvals in their hands. The post Google Maps Gets New Gemini Agent Features for Orders, Hotels, and Events appeared first on TechRepublic .
Score: 56🌐 MovesAug 7, 2026https://www.techrepublic.com/article/news-google-maps-agentic-ai-ability-ask-maps/ - As Apple Kicks the AI Can Down the Road, the Company Is Being Picked Apart
A lawsuit alleges OpenAI is stealing secrets from Apple – what the heck is going on, Timbo?
- The end of anonymous protest — How facial recognition puts democracy at risk
The use of facial recognition technology to police protesters is growing in Europe and this “erosion of privacy” may shape how citizens express dissent.
- Cambricon posts 108% surge in first-half revenue amid China’s massive AI chip drive
Chinese artificial intelligence (AI) chip giant Cambricon Technologies reported a 108 per cent surge in first-half revenue on Friday, as the firm capitalises on a massive domestic push to replace foreign AI hardware. The chipmaker’s revenue for the first six months of the year reached 6 billion yuan (US$890 million), while profits also jumped 122.6 per cent year on year to 2.3 billion yuan, according to a stock exchange filing. In the second quarter, the firm’s revenue was 3.1 billion yuan, in...
- Grindr CEO says AI is doing work that would have required hiring 200 additional engineers
Grindr CEO says AI is doing work that would have required hiring 200 additional engineers Business Insider
Score: 55🌐 MovesAug 7, 2026https://www.businessinsider.com/grindr-ceo-ai-work-200-additional-engineers-2026-8 - The godfather of Israeli cybersecurity: The Hugging Face incident exposes the wrong AI security debate
The godfather of Israeli cybersecurity: The Hugging Face incident exposes the wrong AI security debate Fortune
Score: 55🌐 MovesAug 7, 2026https://fortune.com/2026/08/07/shlomo-kramer-cato-godfather-of-cyber-hugging-face-hack/ - Banning Chinese Robots: Will It Work?
U.S. bans target Chinese robots while American manufacturers remain dependent on China’s crucial robotics components.
Score: 55🌐 MovesAug 7, 2026https://www.forbes.com/sites/johnwerner/2026/08/07/banning-chinese-robots-will-it-work/ - After Rippling blew millions on AI in months, it built an employee ROI tool
After its own AI usage wake-up call, Rippling this week unveiled AI Spend Console, a product that tracks individual and team employee AI spending.
- Agentic AI Is Breaking Security’s Human Assumptions
AI agents can act thousands of times before humans react. Black Hat experts warn identity, costs and security models aren’t ready for what comes next.
Score: 55🌐 MovesAug 7, 2026https://www.forbes.com/sites/ronschmelzer/2026/08/07/agentic-ai-is-breaking-securitys-human-assumptions/ - Gulf investors turn to Asia for AI opportunities
Conflict in the Middle East and Europe and supply-chain uncertainty are raising the appeal of markets seen as relatively stable.
Score: 55🌐 MovesAug 7, 2026https://www.semafor.com/article/08/07/2026/gulf-investors-look-to-asia-for-ai-opportunities - After Eight Million Flights, DJI's Low-Altitude Bet Is Reaching the Mid-Game
DJI has covered 80-plus countries with more than 8 million autonomous sorties. The story of China's low-altitude economy has a center of gravity, and it is a small grey box on a rooftop.
Score: 55🌐 MovesAug 7, 2026https://pandaily.com/dji-drone-airport-low-altitude-infrastructure-aug2026 - Lyft CEO on Strong Growth & Autonomous Vehicles, How Dario Amodei Stirred Up Silicon Valley — TITV [Video]
Lyft CEO on Strong Growth & Autonomous Vehicles, How Dario Amodei Stirred Up Silicon Valley — TITV [Video] The Information
- ETtech Explainer: Why Meta's Zuckerberg may have to publicly bend the knee in India
A parliamentary panel has sought an apology from Zuckerberg over the removal of PM Modi's Facebook post, warning that immunity could be withdrawn if he refused. Sources told ET that during the meeting with Ministry of Electronics and Information Technology (MeitY) officials on Wednesday, Kaplan conveyed apologies from Zuckerberg.
- This is way mo’ fun: Baby blue Waymo ‘Ojai’ spotted in Seattle, adding to robotaxi test fleet
GeekWire spotted a boxy baby blue Ojai in the parking lot of a Fred Meyer store in the Ballard neighborhood on Friday morning. Read More
- AI is taking over the internet; Cloudflare's ready to cash in
Bots outnumber humans on Cloudflare's internet traffic for the first time.
Score: 54🌐 MovesAug 7, 2026https://www.thestack.technology/ai-is-taking-over-the-internet-cloudflares-ready-to-cash-in/ - Waymo Jacks Up Lobbying In Washington, DC
The race is on in the robotaxi industry to get into new markets, build up customer bases, and edge out the competition before they arrive — or at least at these nascent stages when no one is too massive or dominant. I just covered news of Zoox launching paid service ... [continued] The post Waymo Jacks Up Lobbying In Washington, DC appeared first on CleanTechnica .
Score: 54🌐 MovesAug 7, 2026https://cleantechnica.com/2026/08/06/waymo-jacks-up-lobbying-in-washington-dc/ - Hacks put pressure on third-party model testers
Models from Meta, Anthropic, and OpenAI all accessed the internet and compromised outside organizations while undergoing cybersecurity testing with AI evaluation company Irregular.
Score: 54🌐 MovesAug 7, 2026https://www.semafor.com/article/08/07/2026/hacks-put-pressure-on-third-party-model-testers - AI music generator Suno tightens rules to fight spam and address growing copyright concerns
Suno CEO Mikey Shulman has announced new guidelines and tighter download limits after its AI-generated music was used to game streaming platforms for profit. The company also faces pressure from a German copyright ruling and an admission by one of its investors that AI music competes directly with human artists. The article AI music generator Suno tightens rules to fight spam and address growing copyright concerns appeared first on The Decoder .
- Hospitals must prove they can make AI operational at scale
Hospitals must prove they can make AI operational at scale Healthcare IT News
Score: 54🌐 MovesAug 7, 2026https://www.healthcareitnews.com/news/hospitals-must-prove-they-can-make-ai-operational-scale - China's first robot school turns machines into workers
China's first robot school turns machines into workers Gulf News
Score: 54🌐 MovesAug 7, 2026https://gulfnews.com/world/chinas-first-robot-school-turns-machines-into-workers-1.500633447 - Allstate Introduces Large Language Model, ALLIE
Allstate CEO Tom Wilson said the insurer has a “technology-drive strategy, not a strategy supported by technology.” And the next step in the strategy is the build of ALLIE – Allstate’s Large Language Intelligent Ecosystem. Speaking to analysts during a …