Google Bard Officially Becomes Gemini: The AI Wars Heat Up

Google Bard Officially Becomes Gemini: The AI Wars Heat Up

Google's AI Rebrand and Model Unification

On February 8, 2024, Google retired the Bard brand and relaunched its AI assistant as Gemini—unifying the company's AI efforts under a single brand. This wasn't just a name change; it marked Google's strategic pivot to make Gemini the foundation of all its AI products, from the consumer chatbot to enterprise APIs to Android integration.

The rebrand came with the launch of Gemini Advanced ($19.99/month as part of Google One AI Premium), powered by Gemini Ultra 1.0—Google's most capable model at the time, and a direct competitor to GPT-4.

The Name Change Strategy

Google's AI naming had become confusing:

Before RebrandAfter Rebrand
Bard (chatbot)Gemini (chatbot)
Gemini (model family)Gemini (model family)
Duet AI (workspace)Gemini for Workspace
PaLM 2 (older model)Deprecated
Google AI StudioGoogle AI Studio

The unification makes sense: one brand (Gemini) for models, apps, and integrations. Compare with OpenAI's cleaner branding: ChatGPT (app) + GPT-4 (model).

Gemini Ultra 1.0 Performance

The launch model powering Gemini Advanced:

BenchmarkGemini Ultra 1.0GPT-4Claude 2.1Llama 2 70B
MMLU90.0%86.4%81.4%68.9%
HumanEval74.4%67.0%70.1%29.9%
MATH53.2%52.9%32.5%13.5%
GSM8K94.4%92.0%88.0%56.8%
HellaSwag87.8%95.3%89.0%85.3%

Gemini Ultra claimed the first >90% score on MMLU—the go-to benchmark for general knowledge. However, Google's benchmarking methodology (using 32-shot CoT) drew scrutiny, as OpenAI used different configurations.

Gemini Model Family

The full Gemini lineup at launch:

text
1Gemini Model Family (February 2024):
2├── Ultra 1.0
3│   ├── Most capable model
4│   ├── Powers Gemini Advanced
5│   └── Best for complex reasoning
6├── Pro 1.0
7│   ├── Balanced performance/cost
8│   ├── Powers standard Gemini
9│   ├── API access via AI Studio/Vertex
10│   └── 1M token context (later)
11└── Nano
12    ├── On-device model
13    ├── Two sizes (1.8B, 3.25B)
14    ├── Powers Pixel features
15    └── Runs on Tensor G3/G4 chips

Multimodal by Design

Unlike GPT-4 (which added vision capabilities to a text model), Gemini was trained as a natively multimodal model:

python
1import google.generativeai as genai
2
3model = genai.GenerativeModel('gemini-pro-vision')
4
5# Native multimodal: text + image in one model
6response = model.generate_content([
7    "Analyze this architecture diagram and identify potential scalability bottlenecks",
8    image_data  # PIL Image or bytes
9])
10
11# Multi-turn multimodal conversation
12chat = model.start_chat()
13chat.send_message([
14    "Here's my database schema", 
15    schema_image
16])
17chat.send_message("Now optimize it for read-heavy workloads")

Gemini processes text, images, audio, video, and code in a single model—no separate vision model or transcription step needed.

Google One AI Premium

Gemini Advanced requires a subscription:

PlanPriceFeatures
Free (Gemini)$0Gemini Pro, basic features
Google One AI Premium$19.99/moGemini Ultra, 2TB storage, Workspace AI

The $19.99 price matches ChatGPT Plus, but includes 2TB Google One storage and Gemini integration across Gmail, Docs, Sheets, Slides, and Meet—a significant value proposition for Google Workspace users.

Android Integration

Gemini replaced Google Assistant as the default AI on Android:

  • Long-press home button → Gemini (instead of Google Assistant)
  • On-screen context: Gemini sees what's on your screen and can help
  • Image analysis: Take a photo, ask Gemini about it
  • Extensions: Connect to Gmail, Maps, YouTube, Drive
  • Voice conversation: Natural back-and-forth dialogue
text
1Example Android interaction:
21. User sees a restaurant while walking
32. Opens Gemini, shows the restaurant
43. "What are the reviews for this place?"
54. Gemini identifies the restaurant from the image
65. Pulls Google Maps reviews
76. "Should I make a reservation for tonight?"
87. Gemini suggests times based on your calendar

The Competitive Landscape (Feb 2024)

ProductCompanyModelPriceKey Feature
Gemini AdvancedGoogleUltra 1.0$19.99/moGoogle integration
ChatGPT PlusOpenAIGPT-4$20/moMost popular
Claude ProAnthropicClaude 2.1$20/moLong context
Copilot ProMicrosoftGPT-4$20/moOffice integration
Perplexity ProPerplexityMulti-model$20/moSearch-focused

Evolution Through 2024

Gemini evolved rapidly after launch:

MonthUpdate
Feb 2024Gemini launch, Ultra 1.0
May 2024Gemini 1.5 Pro (1M context), Flash
Jun 2024Gemini in Android, Workspace expansion
Sep 2024Gemini Live (voice conversations)
Dec 2024Gemini 2.0 Flash (agent capabilities)

The 1.5 Pro update in May was particularly significant—offering a 1 million token context window (later 2 million), the largest of any production model.

Impact and Assessment

Google's Gemini rebrand accomplished several goals:

  1. Brand clarity: One name for all AI products
  2. Competitive positioning: Direct comparison with ChatGPT
  3. Ecosystem leverage: Deep integration with Google's existing products
  4. Enterprise play: Workspace integration drives business adoption
  5. Mobile strategy: Default AI on billions of Android devices

For developers, the key takeaway is Google's commitment to making Gemini the platform for AI applications—from free API access to enterprise deployment.

Sources: Google Blog, Google AI, Gemini API Docs