在 Firebase SDK 中使用 Vertex AI 開始使用 Gemini API


本指南說明如何開始使用所選平台的 Vertex AI in Firebase SDK,直接從應用程式呼叫 Vertex AI Gemini API

事前準備

本指南假設您熟悉使用 Xcode 為 Apple 平台 (例如 iOS) 開發應用程式。

步驟 1:設定 Firebase 專案,並將應用程式連結至 Firebase

如果您已經有 Firebase 專案,且有一個應用程式連結至 Firebase

  1. Firebase 主控台中,前往「使用 Gemini 進行建構」頁面

  2. 按一下 Vertex AI in Firebase 資訊卡,即可啟動工作流程,協助您完成下列工作。(請注意,如果您在主控台中看到 Vertex AI 的索引標籤,表示這些工作已完成)。

  3. 請繼續參閱本指南的後續步驟,將 SDK 新增至應用程式。

如果您尚未有 Firebase 專案,且有一個應用程式連結至 Firebase


步驟 2:新增 SDK

Firebase 專案已設定完成,應用程式也已連結至 Firebase (請參閱上一個步驟),因此您現在可以將 Vertex AI in Firebase SDK 新增至應用程式。

Vertex AI in Firebase 程式庫提供對 Vertex AI Gemini API 的存取權,並包含在 Apple 平台 (firebase-ios-sdk) 的 Firebase SDK 中。對於 Vertex AI in Firebase 程式庫,您必須使用 Swift Package Manager 安裝及管理 Firebase 依附元件。目前不支援其他套件管理工具,例如 CocoaPods。

  1. 在 Xcode 中保持開啟應用程式專案,然後前往「檔案」檔案 >新增套件

  2. 在系統提示時,新增 Firebase Apple 平台 SDK 存放區:

      https://github.com/firebase/firebase-ios-sdk
    
  3. 選取最新的 SDK 版本。

  4. 選取 FirebaseVertexAI-Preview 程式庫。

    完成後,Xcode 會自動開始解析並下載 複製到背景依附元件

步驟 3:初始化 Vertex AI 服務和生成模型

您必須先初始化 Vertex AI,才能發出 API 呼叫 以及生成式模型

  1. 匯入 FirebaseVertexAI 模組:

    import FirebaseVertexAI
    
  2. 初始化 Vertex AI 服務和生成式模型:

    import FirebaseVertexAI
    
    // Initialize the Vertex AI service
    let vertex = VertexAI.vertexAI()
    
    // Initialize the generative model with a model that supports your use case
    // Gemini 1.5 models are versatile and can be used with all API capabilities
    let model = vertex.generativeModel(modelName: "gemini-1.5-flash")
    

完成入門指南後,請瞭解如何選擇適合用途和應用程式的 Gemini 模型,以及 (選用) 位置

步驟 4:呼叫 Vertex AI Gemini API

您已將應用程式連結至 Firebase、新增 SDK,並初始化 Vertex AI 服務和產生模型,因此可以呼叫 Vertex AI Gemini API

您可以使用 generateContent() 根據僅限文字提示要求產生文字:

import FirebaseVertexAI

// Initialize the Vertex AI service
let vertex = VertexAI.vertexAI()

// Initialize the generative model with a model that supports your use case
// Gemini 1.5 models are versatile and can be used with all API capabilities
let model = vertex.generativeModel(modelName: "gemini-1.5-flash")

// Provide a prompt that contains text
let prompt = "Write a story about a magic backpack."

// To generate text output, call generateContent with the text input
let response = try await model.generateContent(prompt)
if let text = response.text {
  print(text)
}

你還可以做些什麼?

進一步瞭解 Gemini 模型

瞭解可用於各種用途的模型,以及配額和定價

試試 Gemini API 的其他功能

瞭解如何控管內容產生

您也可以使用 Vertex AI Studio


提供意見 你使用 Vertex AI in Firebase 的感想