Gemini is a household of synthetic intelligence (AI) fashions launched by Google, with every mannequin specializing in particular use instances. At I/O 2024, Google introduced the Gemini 1.5 Professional and Gemini 1.5 Flash fashions. These fashions can be found through the Google AI Consumer SDK.
On this tutorial, you’ll create an AI chatbot named CatBot utilizing the Gemini 1.5 Professional mannequin. On this chatbot, you’ll work together with a enjoyable cat named Milo.
Throughout the course of, you’ll be taught to:
- Setup the Google AI API Key.
- Configure and combine the Gemini mannequin.
- Create a chat UI.
- Add security checks.
And with that, it’s time to get began.
Getting Began
Obtain the supplies for this tutorial by clicking the Obtain Supplies button on the high or backside of the tutorial. Then, open the starter mission in Android Studio Jellyfish or later.
You’ll work on CatBot, an AI-based chatbot that allows you to chat with a cat named Milo.
The mission accommodates the next recordsdata:
- MainActivity: Comprises the primary Exercise and hosts the Composables.
- ChatMessage: An information class representing every message.
- ChatScreen: A Composable describing the chat display.
- ChatViewModel: A ViewModel representing the state of the chat display. It’ll comprise the logic of dealing with outgoing and incoming messages.
Construct and run the app. You’ll see the next display:
The display has an enter area for the chat message and a ship button. Proper now, sending a message doesn’t do something. You’ll change this all through the tutorial.
Producing the API key
First, you’ll want an API key to work together with the Gemini APIs. Head over to https://aistudio.google.com/app which is able to open the Google AI Studio. On the proper facet of the studio, you’ll see the Mannequin dropdown:
Choose the Gemini 1.5 Flash mannequin.
Though the Gemini 1.5 Professional mannequin is extra highly effective, the Gemini 1.5 Flash is considerably sooner, making it extra appropriate for this chatbot software.
Subsequent, click on Get API key on the left navigation panel:
You’ll get the next display in case you haven’t created an API key earlier:
Click on Create API key. You’ll get the Create API Key dialog as proven under:
Choose Create API key in new mission. As soon as the API key has been generated, you’ll see a dialog along with your new API key. Copy the API Key and head again to Android Studio.
Open native.properties and add the next code:
apiKey=your API key right here
Within the code above, change your API key right here
with the API key you copied earlier.
Notice: This technique of specifying the API key contained in the Android mission is barely appropriate for prototypes. For manufacturing apps, the API key ought to be current on the backend, and entry to the mannequin ought to solely be finished through an API.
Now that the API secret is prepared, you can begin modeling the chat message.
Modeling the Chat Message
On this chatbot, there may be three forms of messages:
- Consumer messages
- Replies from the mannequin
- Error messages
To mannequin the forms of messages, create a brand new class named ChatParticipant
and add the next code:
enum class ChatParticipant {
USER,
AI,
ERROR
}
Within the code above, you created an enum class with three potential values, every representing a kind of message.
Subsequent, that you must affiliate every chat message with a specific participant. Open ChatMessage
and add the next attribute to the information class:
val participant: ChatParticipant
The ChatMessage
class will now be as follows:
information class ChatMessage(
val id: String = UUID.randomUUID().toString(),
val message: String,
val participant: ChatParticipant
)
Configuring the Gemini Mannequin
You’ll want the Google AI Consumer SDK to entry the Gemini mannequin on Android. Open the app-module construct.gradle and add the next dependency:
implementation("com.google.ai.shopper.generativeai:generativeai:0.6.0")
Do a Gradle sync and look forward to the dependency to complete downloading.
Subsequent, create a brand new file named Mannequin.kt and add the next code:
inner val mannequin = GenerativeModel(
// 1
modelName = "gemini-1.5-flash-latest",
// 2
apiKey = BuildConfig.apiKey,
// 3
generationConfig = generationConfig {
temperature = 0.7f
},
// 4
systemInstruction = content material {
textual content("You're a enjoyable cat named Milo. " +
"Give mischievous solutions in most 3 traces. " +
"Attempt to maintain the dialog going")
}
)
The code above creates a brand new occasion of GenerativeModel
with the next arguments:
-
modelName
: Because you’re utilizing Gemini 1.5 Flash, the modelName is gemini-1.5-flash-latest. Within the case of Gemini 1.5 Professional, the mannequin identify can be gemini-1.5-pro-latest. -
apiKey
: This worth is extracted from the native.properties worth you set earlier within the tutorial. -
generationConfig
: The mannequin configuration. Right here, you set thetemperature
worth to 0.7. The temperature may be something between 0 and 1. A decrease temperature will result in a extra predictable response, whereas a better temperature will result in a extra inventive response. -
systemInstruction
: That is the bottom immediate in your mannequin, which is able to decide the persona of your mannequin. For this app, you’re asking the mannequin to behave like a enjoyable cat named Milo and offering further particulars.
Notice: Don’t import the BuildConfig
class from the Google AI Consumer SDK. Once you construct the mission, the wanted BuildConfig
shall be generated.
Including Preliminary Historical past
When engaged on a dialog app utilizing the Gemini API, you may add message historical past together with the system immediate. This allows you to present the mannequin with the context of a earlier dialog so the person can proceed a dialog throughout app classes.
Open ChatViewModel
and alter the constructor to:
class ChatViewModel(
generativeModel: GenerativeModel = mannequin
)
ChatViewModel
now takes an occasion of GenerativeModel
as a constructor argument, and the default worth is ready to the occasion you created within the earlier part.
Subsequent, you’ll want to supply the chat historical past. Add the next code contained in the ChatViewModel
class:
// 1
personal val chat = generativeModel.startChat(
// 2
historical past = listOf(
//3
content material("person") {
textual content("Good day n")
},
content material("mannequin") {
textual content("Meow! What's up, human? Did you convey me any tuna? 😉 n")
}
)
)
Within the code above, you:
- Begin a brand new chat with the
startChat
technique. - Specify the
historical past
argument as a listing of messages. - Specify that the person despatched the primary message and the mannequin despatched the second.
Now that the mannequin has the context of the message historical past, the UI ought to show the messages if you open the app.
Change the initialization of _uiState
:
personal val _uiState: MutableStateFlow> =
MutableStateFlow(
chat.historical past.map { content material ->
ChatMessage(
message = content material.elements.first().asTextOrNull() ?: "",
participant = if (content material.position == "person")
ChatParticipant.USER
else
ChatParticipant.AI,
)
}
)
Within the code above, you iterate over the chat historical past and map every message to an occasion of ChatMessage
. You then set the default worth of the state to comprise the message historical past.
Now, each time you run the app, a dialog historical past shall be obtainable, making it straightforward to proceed the dialog.