Sunday, May 5, 2024
HomeIOS DevelopmentIntegrating Google Gemini AI with Swift and SwiftUI

Integrating Google Gemini AI with Swift and SwiftUI


On the upcoming WWDC, Apple is predicted to announce an on-device massive language mannequin (LLM). The following model of the iOS SDK will doubtless make it simpler for builders to combine AI options into their apps. Whereas we await Appleā€™s debut of its personal Generative AI fashions, corporations like OpenAI and Google already present SDKs for iOS builders to include AI options into cellular apps. On this tutorial, we’ll discover Google Gemini, previously often called Bard, and reveal the right way to use its API to construct a easy SwiftUI app.

We’re set to construct a Q&A app that makes use of the Gemini API. The app includes a easy UI with a textual content subject for customers to enter their questions. Behind the scenes, we’ll ship the consumerā€™s query to Google Gemini to retrieve the reply.

swiftui-gemini-app-demo

Please be aware that it’s important to use Xcode 15 (or up) to comply with this tutorial.

Getting Began with Google Gemini APIs

Assuming that you simply havenā€™t labored with Gemini, the very very first thing is to go as much as get an API key for utilizing the Gemini APIs. To create one, you’ll be able to go as much as Google AI Studio and click on the Create API key button.

swiftui-google-gemini-api-key

Utilizing Gemini APIs in Swift Apps

It is best to now have created the API key. Weā€™ll use this in our Xcode undertaking. Open Xcode and create a brand new SwiftUI undertaking, which Iā€™ll name GeminiDemo. To retailer the API key, create a property file named GeneratedAI-Data.plist. On this file, create a key named API_KEY and enter your API key as the worth.

swiftui-gemini-property-list

To learn the API key from the property file, create one other Swift file named APIKey.swift. Add the next code to this file:

In the event you determine to make use of a unique identify for the property file as a substitute of the unique ā€˜GenerativeAI-Data.plistā€™, you have to to change the code in your ā€˜APIKey.swiftā€™ file. This modification is critical as a result of the code references the precise filename when fetching the API key. So, any change within the property file identify ought to be mirrored within the code to make sure the profitable retrieval of the API key.

Including the SDK Utilizing Swift Bundle

The Google Gemini SDK is well accessible as a Swift Bundle, making it easy so as to add to your Xcode undertaking. To do that, right-click the undertaking folder within the undertaking navigator and choose Add Bundle Dependencies. Within the dialog, enter the next bundle URL:

You may then click on on the Add Bundle button to obtain and incorporate theĀ GoogleGenerativeAIĀ bundle into the undertaking.

Constructing the App UI

Letā€™s begin with the UI. Itā€™s easy, with solely a textual content subject for consumer enter and a label to show responses from Google Gemini.

Open ContentView.swift and declare the next properties:

The textInput variable is used to seize consumer enter from the textual content subject. The response variable shows the APIā€™s returned response. Given the APIā€™s response time, we embody an isThinking variable to observe the standing and present animated results.

For the physique variable, change it with the next code to create the consumer interface:

The code is kind of easy, particularly when you have some expertise with SwiftUI. After making the modifications, it’s best to see the next consumer interface within the preview.

swiftui-gemini-app-ui

Integrating with Google Gemini

Earlier than you need to use the Google Gemini APIs, you first have to import the GoogleGenerativeAI module:

Subsequent, declare a mannequin variable and initialize the Generative mannequin like this:

Right here, we make the most of the gemini-pro mannequin, which is particularly designed to generate textual content from textual content enter.

To ship the textual content to Google Gemini, letā€™s create a brand new perform known as sendMessage():

As you’ll be able to see from the code above, you solely have to name the generateContent technique of the mannequin to enter textual content and obtain the generated response. The result’s in Markdown format, so we use LocalizedStringKey to wrap the returned textual content.

To name the sendMessage() perform, replace the TextField view and fix the onSubmit modifier to it:

On this state of affairs, when the consumer finishes inputting the textual content and presses the return key, the sendMessage() perform is named to submit the textual content to Google Gemini.

Thatā€™s it! Now you can run the app in a simulator or execute it instantly within the preview to check the AI function.

swiftui-generative-ai-demo

Abstract

This tutorial exhibits the right way to combine Google Gemini AI right into a SwiftUI app. It solely requires just a few traces of code to allow your app with Generative AI options. On this demo, we use the gemini-pro mannequin to generate textual content from text-only enter.

Nevertheless, the capabilities of Gemini AI are usually not simply restricted to text-based enter. Gemini additionally affords a multimodal mannequin named gemini-pro-vision that permits builders to enter each textual content and pictures. We encourage you to take full benefit of this tutorial by modifying the supplied code and experimenting with it.

If in case you have any questions concerning the tutorial, please let me know by leaving a remark under.



RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments