
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 Rebrand | After Rebrand |
|---|---|
| Bard (chatbot) | Gemini (chatbot) |
| Gemini (model family) | Gemini (model family) |
| Duet AI (workspace) | Gemini for Workspace |
| PaLM 2 (older model) | Deprecated |
| Google AI Studio | Google 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:
| Benchmark | Gemini Ultra 1.0 | GPT-4 | Claude 2.1 | Llama 2 70B |
|---|---|---|---|---|
| MMLU | 90.0% | 86.4% | 81.4% | 68.9% |
| HumanEval | 74.4% | 67.0% | 70.1% | 29.9% |
| MATH | 53.2% | 52.9% | 32.5% | 13.5% |
| GSM8K | 94.4% | 92.0% | 88.0% | 56.8% |
| HellaSwag | 87.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:
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 chipsMultimodal by Design
Unlike GPT-4 (which added vision capabilities to a text model), Gemini was trained as a natively multimodal model:
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:
| Plan | Price | Features |
|---|---|---|
| Free (Gemini) | $0 | Gemini Pro, basic features |
| Google One AI Premium | $19.99/mo | Gemini 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
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 calendarThe Competitive Landscape (Feb 2024)
| Product | Company | Model | Price | Key Feature |
|---|---|---|---|---|
| Gemini Advanced | Ultra 1.0 | $19.99/mo | Google integration | |
| ChatGPT Plus | OpenAI | GPT-4 | $20/mo | Most popular |
| Claude Pro | Anthropic | Claude 2.1 | $20/mo | Long context |
| Copilot Pro | Microsoft | GPT-4 | $20/mo | Office integration |
| Perplexity Pro | Perplexity | Multi-model | $20/mo | Search-focused |
Evolution Through 2024
Gemini evolved rapidly after launch:
| Month | Update |
|---|---|
| Feb 2024 | Gemini launch, Ultra 1.0 |
| May 2024 | Gemini 1.5 Pro (1M context), Flash |
| Jun 2024 | Gemini in Android, Workspace expansion |
| Sep 2024 | Gemini Live (voice conversations) |
| Dec 2024 | Gemini 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:
- Brand clarity: One name for all AI products
- Competitive positioning: Direct comparison with ChatGPT
- Ecosystem leverage: Deep integration with Google's existing products
- Enterprise play: Workspace integration drives business adoption
- 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


