quickstarts/file-api/sample.js (39 lines of code) (raw):
/*
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const dotenv = require('dotenv');
const fs = require('fs');
const {google} = require('googleapis');
const mime = require('mime-types');
// Load environment variables from .env file
dotenv.config({ path: '.env' });
const API_KEY = process.env.GOOGLE_API_KEY;
const GENAI_DISCOVERY_URL = `https://generativelanguage.googleapis.com/$discovery/rest?version=v1beta&key=${API_KEY}`;
async function run(filePath, fileDisplayName) {
// Initialize API Client
const genaiService = await google.discoverAPI({url: GENAI_DISCOVERY_URL});
const auth = new google.auth.GoogleAuth().fromAPIKey(API_KEY);
// Prepare file to upload to GenAI File API
const media = {
mimeType: mime.lookup(filePath),
body: fs.createReadStream(filePath),
};
var body = {"file": {"displayName": fileDisplayName}};
try {
// Upload the file
const createFileResponse = await genaiService.media.upload({
media: media, auth: auth, requestBody:body});
const file = createFileResponse.data.file;
const fileUri = file.uri;
console.log("Uploaded file: " + fileUri);
// Make Gemini 1.5 API LLM call
const prompt = "Describe the image with a creative description";
const model = "models/gemini-2.0-flash";
const contents = {'contents': [{
'parts':[
{'text': prompt},
{'file_data': {'file_uri': fileUri, 'mime_type': file.mimeType}}]
}]}
const generateContentResponse = await genaiService.models.generateContent({
model: model, requestBody: contents, auth: auth});
console.log(JSON.stringify(generateContentResponse.data));
}
catch (err) {
throw err;
}
}
filePath = "sample_data/gemini_logo.png";
fileDisplayName = "Gemini logo";
run(filePath, fileDisplayName);