Browsed by
Tag: ai

Creating a chatbot with Google Gemini Vertex AI and Quarkus

Creating a chatbot with Google Gemini Vertex AI and Quarkus

I recently created a Quarkus extension that provides access to Google Vertex AI. In this article, I’m going to use this extension to create a chatbot. The first step is to create a Quarkus project containing the REST and Google Cloud Vertex AI extensions. Here are the extensions to add to your dependency file: <dependency> <groupId>io.quarkiverse.googlecloudservices</groupId> <artifactId>quarkus-google-cloud-vertex-ai</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy-reactive</artifactId> </dependency> Or more simply, here is a link that will allow you to create a project from code.quarkus.io. The…

Read More Read More