Learn R Programming

gemini.R (version 0.8.0)

token.vertex: Generate Gemini Access Token and Endpoint URL

Description

Generates an access token for the Gemini model and constructs the corresponding endpoint URL.

Usage

token.vertex(jsonkey = NULL, model_id = NULL, expTime = 3600)

Value

A list containing:

key

The generated access token.

url

The endpoint URL for the Gemini model.

Arguments

jsonkey

A path to JSON file containing the service account key from Vertex AI.

model_id

The ID of the Gemini model. This will be prepended with "gemini-".

expTime

The expiration time of the access token in seconds (default is 3600 seconds, or 1 hour).

Examples

Run this code
if (FALSE) {
library(gemini.R)
tokens <- token.vertex(jsonkey = "YOURAPIKEY.json", model_id = "1.5-flash")

}


Run the code above in your browser using DataLab