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: io.quarkiverse.googlecloudservices quarkus-google-cloud-vertex-ai io.quarkus quarkus-resteasy-reactive Or more simply, here is a link that will allow you to create a project from code.quarkus.io. The extension allows you to…