Friday, May 9, 2025
News PouroverAI
Visit PourOver.AI
No Result
View All Result
  • Home
  • AI Tech
  • Business
  • Blockchain
  • Data Science & ML
  • Cloud & Programming
  • Automation
  • Front-Tech
  • Marketing
  • Home
  • AI Tech
  • Business
  • Blockchain
  • Data Science & ML
  • Cloud & Programming
  • Automation
  • Front-Tech
  • Marketing
News PouroverAI
No Result
View All Result

Seven Key Product Announcements from Google I/O 2024

May 16, 2024
in Cloud & Programming
Reading Time: 4 mins read
0 0
A A
0
Share on FacebookShare on Twitter



At the end of 2022, AI became a mainstream phenomenon with the launch of OpenAI’s ChatGPT. While machine learning has been a staple in computer science for years, ChatGPT’s release marked a significant milestone, rapidly improving with each update and gaining widespread attention. Google quickly took notice, and by Google I/O 2024, the company had fully embraced AI, signaling a shift from its traditional identity as a search company to an AI-driven enterprise. With a robust technical infrastructure and an extensive data repository, Google is poised to integrate many AI products into its ecosystem. Here are the top seven product announcements from the 2024 Google I/O conference.

Gemini
Last year, Google released Bard, its first large-scale language model. While Bard was certainly usable, it wasn’t nearly as accurate or flexible as ChatGPT. In the subsequent year, Bard received significant upgrades, including a new name: Gemini. You can give it a test drive over here: https://gemini.google.com It generates results fast. Here’s a prompt used to create a simple Android app:
Create a simple Android app with Jetpack Compose that features a button that, when pressed, displays an alert box with a “Hello!” message in it. Here’s the Gemini result:
“`
@Composable
fun MyApp() {
val showDialog = remember { mutableStateOf(false) }

Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
Button(onClick = { showDialog.value = true }) {
Text(“Show Alert”)
}
if (showDialog.value) {
SimpleDialog(onCloseRequest = { showDialog.value = false })
}
}
}

@Composable
fun SimpleDialog(onCloseRequest: () -> Unit) {
Dialog(onDismissRequest = onCloseRequest) {
Surface(shape = MaterialTheme.shapes.medium) {
Column(modifier = Modifier.padding(16.dp)) {
Text(“Hello!”)
Spacer(modifier = Modifier.height(16.dp))
Button(onClick = onCloseRequest) {
Text(“Close”)
}
}
}
}
}
“`
Gemini did a few good things. As mentioned, it was fast and took little time to generate and explain the code. Gemini also provided a nice warning about using generated code. While such a warning may have been provided for liability reasons, it’s always good to remind the end user that the code isn’t tested. Finally, Gemini actually provided the sources for its answer. The code using the Gemini 1.0 model didn’t quite produce the expected result. Here’s the same prompt submitted to ChatGPT using the 4o model:
“`
@Composable
fun Greeting() {
var showDialog by remember { mutableStateOf(false) }

if (showDialog) {
AlertDialog(
onDismissRequest = { showDialog = false },
title = {
Text(text = “Alert”)
},
text = {
Text(“Hello!”)
},
confirmButton = {
Button(
onClick = { showDialog = false }
) {
Text(“OK”)
}
}
)
}

Box(
modifier = Modifier.fillMaxSize(),
contentAlignment = Alignment.Center
) {
Button(onClick = { showDialog = true }) {
Text(“Show Alert”)
}
}
}
“`
In this case, the code provided the expected results and in-depth instructions for setting up the necessary Gradle dependencies. However, it didn’t provide a source or warn the developer about using the code. While the overall result leans towards ChatGPT, this simple example demonstrates that Gemini is at least competitive, which was not the case last year.

Gemini Variants
With this keynote, Google also revealed the different variant types for Gemini. Each variant is customized for specific use case situations. Currently, there are four variants: Ultra, Pro, Flash, and Nano. Gemini Ultra is designed for highly complex tasks that require deep research and complex strategies. This version of the model requires a lot of processing power and is suited for enterprise clients with budgets to match. In a marketing video, the presenters used Gemini Ultra to filter scientific papers, extract key data from papers, and filter two hundred thousand scientific papers into a data set. Gemini Nano is designed for on-device processing. While it’s not as accurate as the regular Gemini version, it ensures that data isn’t sent to Google. In the keynote, Google demonstrated real-time scam detection on phone calls powered by Gemini Nano. Gemini Flash is a lightweight model designed to be inexpensive and fast while providing features such as one million tokens. According to Google, one million tokens translates to “up to 1,500 page PDFs and soon, 30,000 lines of code and 1-hour long videos”. This means sources can be provided in various forms, such as text, audio, and video. The goal is for Gemini to return results in various content types as well. Gemini Pro is a tier for the average consumer using the latest Gemini 1.5 model. Like the Flash variant, Gemini Pro provides one million tokens for input, with a planned two million token upgrade coming soon. Using the previous prompt, here’s the result using the Gemini 1.5 model:
“`
@Composable
fun SimpleAlertDialogApp() {
var showDialog by remember { mutableStateOf(false) }

Column(
modifier = Modifier.fillMaxSize(),
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally
) {
Button(onClick = { showDialog = true }) {
Text(“Show Alert”)
}

if (showDialog) {
AlertDialog(
onDismissRequest = { showDialog = false },
title = { Text(“Alert”) },
text = { Text(“Hello!”) },
confirmButton = {
Button(onClick = { showDialog = false }) {
Text(“OK”)
}
}
)
}
}
}
“`
This was a much better and, more importantly, a much faster result. Gemini Pro also integrates various Google apps. For example, starting a new Google doc presented an option for an AI prompt: After a quick generation, it provided a summary … for the 2023 event. Obviously, it’s not ideal, but it’s not surprising since that keynote was only yesterday. Google Pro is directly competing with ChatGPT, offering a monthly subscription price of $20. This service is free for two months, so it’s a nice way to test it in your workflow. The subscription also provides a Google Drive upgrade and additional Google Workspace features.

Project Astra
Project Astra was probably the coolest part of the conference. It’s an AI model that provides real-time collaborative feedback, much like the computer from Star Trek. In a demo, the engineer walked across her room with her camera, quizzing the AI on various things, such as her current location, the code on her co-workers’ screen, and even the name of the band for her dog. Obviously, it was a tightly scripted sequence. Yet, it demonstrated low latency communication and even hinted at some smart glasses in the future. The most impressive use of this technology came at the end of the developer’s conference. A developer played the keynote back and asked the AI questions. It was a back-and-forth conversation with the AI in grainy real-time. While the presentation was a little too long, seeing a back-and-forth conversation with minimum latency was quite impressive.



Source link

Tags: announcementsGoogleKeyProduct
Previous Post

How To Make Your Garden A Real Sanctuary

Next Post

RISE Faster Integrating SAP BTP and Workload Automation

Related Posts

Top 20 Javascript Libraries You Should Know in 2024
Cloud & Programming

Top 20 Javascript Libraries You Should Know in 2024

June 10, 2024
Simplify risk and compliance assessments with the new common control library in AWS Audit Manager
Cloud & Programming

Simplify risk and compliance assessments with the new common control library in AWS Audit Manager

June 6, 2024
Simplify Regular Expressions with RegExpBuilderJS
Cloud & Programming

Simplify Regular Expressions with RegExpBuilderJS

June 6, 2024
How to learn data visualization to accelerate your career
Cloud & Programming

How to learn data visualization to accelerate your career

June 6, 2024
BitTitan Announces Seasoned Tech Leader Aaron Wadsworth as General Manager
Cloud & Programming

BitTitan Announces Seasoned Tech Leader Aaron Wadsworth as General Manager

June 6, 2024
Copilot Studio turns to AI-powered workflows
Cloud & Programming

Copilot Studio turns to AI-powered workflows

June 6, 2024
Next Post
RISE Faster Integrating SAP BTP and Workload Automation

RISE Faster Integrating SAP BTP and Workload Automation

140% up in one year: Analysts suggest buying this midcap infra stock for long-term, check targets

140% up in one year: Analysts suggest buying this midcap infra stock for long-term, check targets

Regulator signals banks to keep dividends low

Regulator signals banks to keep dividends low

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

  • Trending
  • Comments
  • Latest
Is C.AI Down? Here Is What To Do Now

Is C.AI Down? Here Is What To Do Now

January 10, 2024
Porfo: Revolutionizing the Crypto Wallet Landscape

Porfo: Revolutionizing the Crypto Wallet Landscape

October 9, 2023
A Complete Guide to BERT with Code | by Bradney Smith | May, 2024

A Complete Guide to BERT with Code | by Bradney Smith | May, 2024

May 19, 2024
A faster, better way to prevent an AI chatbot from giving toxic responses | MIT News

A faster, better way to prevent an AI chatbot from giving toxic responses | MIT News

April 10, 2024
Part 1: ABAP RESTful Application Programming Model (RAP) – Introduction

Part 1: ABAP RESTful Application Programming Model (RAP) – Introduction

November 20, 2023
Saginaw HMI Enclosures and Suspension Arm Systems from AutomationDirect – Library.Automationdirect.com

Saginaw HMI Enclosures and Suspension Arm Systems from AutomationDirect – Library.Automationdirect.com

December 6, 2023
Can You Guess What Percentage Of Their Wealth The Rich Keep In Cash?

Can You Guess What Percentage Of Their Wealth The Rich Keep In Cash?

June 10, 2024
AI Compared: Which Assistant Is the Best?

AI Compared: Which Assistant Is the Best?

June 10, 2024
How insurance companies can use synthetic data to fight bias

How insurance companies can use synthetic data to fight bias

June 10, 2024
5 SLA metrics you should be monitoring

5 SLA metrics you should be monitoring

June 10, 2024
From Low-Level to High-Level Tasks: Scaling Fine-Tuning with the ANDROIDCONTROL Dataset

From Low-Level to High-Level Tasks: Scaling Fine-Tuning with the ANDROIDCONTROL Dataset

June 10, 2024
UGRO Capital: Targeting to hit milestone of Rs 20,000 cr loan book in 8-10 quarters: Shachindra Nath

UGRO Capital: Targeting to hit milestone of Rs 20,000 cr loan book in 8-10 quarters: Shachindra Nath

June 10, 2024
Facebook Twitter LinkedIn Pinterest RSS
News PouroverAI

The latest news and updates about the AI Technology and Latest Tech Updates around the world... PouroverAI keeps you in the loop.

CATEGORIES

  • AI Technology
  • Automation
  • Blockchain
  • Business
  • Cloud & Programming
  • Data Science & ML
  • Digital Marketing
  • Front-Tech
  • Uncategorized

SITEMAP

  • Disclaimer
  • Privacy Policy
  • DMCA
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2023 PouroverAI News.
PouroverAI News

No Result
View All Result
  • Home
  • AI Tech
  • Business
  • Blockchain
  • Data Science & ML
  • Cloud & Programming
  • Automation
  • Front-Tech
  • Marketing

Copyright © 2023 PouroverAI News.
PouroverAI News

Welcome Back!

Login to your account below

Forgotten Password? Sign Up

Create New Account!

Fill the forms bellow to register

All fields are required. Log In

Retrieve your password

Please enter your username or email address to reset your password.

Log In