Google Chief Sundar Pichai Mentioned 'AI' 135 Times During His I/O 2025 Keynote Address. A Sign Of The Times?
Google I/O 2025: If there was ever any doubt about where Google is placing its biggest bets, Sundar Pichai’s keynote at Google I/O 2025 made it crystal clear: artificial intelligence is no longer just a tool — it's the foundation of Google’s future.
How Many Times Did 'AI' Appear In Pichai's Speech?
In his keynote speech streamed live from Mountain View's Shoreline Amphitheatre, Pichai mentioned “AI” or “artificial intelligence” a staggering 135 times, according to a full transcript analysis made on Python by ABP Live.
The abbreviation “AI” was mentioned 134 times, while the full phrase “artificial intelligence” appeared once. That averages out to nearly once every 30 seconds — an unmistakable indicator of just how central AI has become to Google’s strategy.
In case you're adept in Python and wanna nerd out, here are the codes used (excluding the basic bits like importing and reading text file):
# Count occurrences
ai_count = text.count(" AI ")
ai_count += text.count(" AI,")
ai_count += text.count(" AI.")
ai_count += text.count(" AI:")
ai_count += text.count(" AI-")
ai_count += text.count(" AI\n")
ai_count += text.count(" AI!")
# Count lowercase variations like "ai" in isolation
ai_count += text.count(" ai ")
ai_count += text.count(" ai,")
ai_count += text.count(" ai.")
ai_count += text.count(" ai:")
ai_count += text.count(" ai-")
ai_count += text.count(" ai\n")
ai_count += text.count(" ai!")
# Count full phrase
artificial_intelligence_count = text.lower().count("artificial intelligence")
ai_total = ai_count + artificial_intelligence_count
ai_total, ai_count, artificial_intelligence_count
Result
(135, 134, 1)
Gemini 2.5 Pro, AI Mode In Search, More
The speech covered a wide array of AI-infused products and capabilities, from the upgraded Gemini 2.5 Pro model to the new AI mode in Google Search. Pichai highlighted how AI is transforming Google’s ecosystem — powering personalised assistants, translating speech in real time, generating video and audio, and even helping blind users navigate physical spaces.
“We’ve fundamentally shifted the frontier itself,” Pichai said, while describing breakthroughs like Project Astra, Gemini Live, and the DeepThink reasoning mode. He emphasised Google’s commitment to making AI accessible, scalable, and safe — all while hinting at broader ambitions around artificial general intelligence (AGI).
Data, Data, Data
The AI-first approach wasn’t just philosophical. Pichai backed it up with hard numbers: a 50x increase in token processing across Google’s systems since last year, over 400 million monthly active users for the Gemini app, and more than 1.5 billion people now experiencing AI overviews in Google Search.
From infrastructure (new TPUs) to consumer experiences (AI-generated posters, smart replies, and virtual try-ons), every layer of the keynote was saturated with AI.
The OS Of Tomorrow
The takeaway? For Google, AI isn’t a feature — it’s the operating system of tomorrow. And Sundar Pichai made sure we didn’t miss the memo.
technology