Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ to comment out cases you do not want to run.
| [search_grounding.js](./search_grounding.js) | Generate with google search grounding |
| [log_prob.js](./log_prob.js) | Generate with log probability for each token |
| [text_generation.js](./text_generation.js) | Generating text |
| [api_version.js](./api_version.js) | Setting api version|
37 changes: 37 additions & 0 deletions samples/api_version.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* @license
* Copyright 2024 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.
*/

import {
GoogleGenerativeAI,
} from "@google/generative-ai";

async function apiVersion() {
// [START api_version]
// Make sure to include these imports:
// import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI(process.env.API_KEY);
const model = genAI.getGenerativeModel(
{model: "gemini-1.5-flash"},
{apiVersion: "v1alpha"},
);

const result = await model.generateContent("Why is the sky blue?");
console.log(result.response.text());
// [END api_version]
}

apiVersion();
1 change: 0 additions & 1 deletion samples/search_grounding.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ async function searchGrounding() {
},
],
},
{ apiVersion: "v1beta" },
);

const prompt = "What is the price of Google stock today?";
Expand Down