Categories: FAANG

Test it out: an online shopping demo experience with Gemini and RAG

Earlier this year, tens of thousands of developers gathered in Las Vegas for Google Cloud Next ’24, which culminated in hundreds of sessions and over 200 announcements. During the Developer Keynote, we showcased how Gemini can help with the shopping experience of an online store. Let’s dive into this demo and how it all worked in more detail!

Problem statement

Imagine you are the owner of Cymbal Shops, an online store with thousands of products. Each item has some metadata– a title, a description, a cost, and more. Traditional built-in search engines can easily handle queries relating to this metadata, but what if the shoppers are more interested in abstract questions such as “what piece of clothing pairs well with my outfit?”, or “what kind of furniture would complement my living room?”

This kind of user need sounds like a great use-case for integration with a large language model (LLM) that can process both text and images, such as Gemini!

But “wait a minute…”, I hear you say. An LLM is trained on an extensive amount of datasets that are not necessarily the collection of products that Cymbal Shops sells, and you quickly notice that the results are fairly generic and irrelevant:

This is where Retrieval-Augmented Generation (also known as RAG) comes in.

Retrieval-Augmented Generation (RAG)

RAG improves the accuracy and relevance of LLM outputs by augmenting (adding onto) the input prompt with relevant pieces of data stored in an external database or search index. This can involve for example embedding the prompt and documents into a shared vector space, then using similarity metrics to rank the pieces of data by relevance.

When a new user prompt is received (in our case, when the user talks to the shopping assistant), we embed it in the same format as our online store’s inventory (a series of numerical values) which allows us to retrieve the most likely relevant items, which we then include as part of the original prompt to the LLM.

In this scenario, Cymbal Shops was already using a PostgreSQL database to store product information, so we will leverage AlloyDB, Google Cloud’s 100% PostgreSQL-compatible database, to also store vectorized products. Leveraging Vertex AI’s built-in RAG capabilities may be preferable in other scenarios.

Without RAG, the prompt sent to Gemini might have looked like this:

code_block
<ListValue: [StructValue([(‘code’, “You are an interior designer that works for Cymbal Shops. Find the most relevant items that matches the style of the room described here: <room description>.rnrnHere is the user’s request: <user request>.”), (‘language’, ”), (‘caption’, <wagtail.rich_text.RichText object at 0x3e929cb62040>)])]>

With RAG, the prompt generated now looks like this:

code_block
<ListValue: [StructValue([(‘code’, “You are an interior designer that works for Cymbal Shops. Find the most relevant items that matches the style of the room described here: <room description>.rnrnHere is the user’s request: <user request>.rnrnOnly pick items that exists as part of this list, and return your top 3 picks: <item list>.”), (‘language’, ”), (‘caption’, <wagtail.rich_text.RichText object at 0x3e929cefedf0>)])]>

Notice the difference?

Let’s deploy this new version of Cymbal Shops and try the same user prompt (“Suggest furniture pieces that pairs well with this room”) alongside the same living room space photo:

The shopping assistant now only recommends real products from the Cymbal Shops inventory!

What’s next?

Try out the demo and see how Gemini can improve your customer experience for yourself! The Cymbal Shops sample application is open source, where you can find the instructions to deploy this demo.

Learn more about how you can leverage the power of RAG in Google Cloud:

AI Generated Robotic Content

Recent Posts

Shooting Aliens – 100% Qwen Image Edit 2509 + NextScene LoRA + Wan 2.2 I2V

submitted by /u/Jeffu [link] [comments]

18 hours ago

10 Python One-Liners for Calling LLMs from Your Code

You don’t always need a heavy wrapper, a big client class, or dozens of lines…

18 hours ago

Build a device management agent with Amazon Bedrock AgentCore

The proliferation of Internet of Things (IoT) devices has transformed how we interact with our…

18 hours ago

How AI can scale customer experience — online and IRL

Customer service teams at fast-growing companies face a challenging reality: customer inquiries are growing exponentially,…

18 hours ago

EAGLET boosts AI agent performance on longer-horizon tasks by generating custom plans

2025 was supposed to be the year of "AI agents," according to Nvidia CEO Jensen…

19 hours ago

A Quarter of the CDC Is Gone

Another round of terminations, combined with previous layoffs and departures, has reduced the Centers for…

19 hours ago