Skip to content

Commit

Permalink
Add samples for log prob and search grounding
Browse files Browse the repository at this point in the history
  • Loading branch information
junyanxu committed Oct 4, 2024
1 parent cec7440 commit 4d7925c
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 0 deletions.
46 changes: 46 additions & 0 deletions samples/log_prob.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/**
* @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 enableLogProb() {
// [START log probability]
const genAI = new GoogleGenerativeAI(process.env.API_KEY);
const model = genAI.getGenerativeModel(
{
// Only 002 models + flash 1.5 8b models are enabled with log probs
// option.
model: "gemini-1.5-flash-002",
generationConfig: {
responseLogprobs: true
},
},
);
const prompt =
"Hello!";
const result = await model.generateContent(prompt);
console.log(JSON.stringify(result.response));
// [END log probability]
}
async function runAll() {
// Comment out or delete any sample cases you don't want to run.
await enableLogProb();
}

runAll();
56 changes: 56 additions & 0 deletions samples/search_grouding.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/**
* @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 {
DynamicRetrievalMode,
GoogleGenerativeAI,
} from "@google/generative-ai";

async function searchGrounding() {
// [START search grounding]
const genAI = new GoogleGenerativeAI(process.env.API_KEY);
const model = genAI.getGenerativeModel(
{
model: "gemini-1.5-pro",
generationConfig: {},
tools: [
{
googleSearchRetrieval: {
dynamicRetrievalConfig: {
mode: DynamicRetrievalMode.MODE_DYNAMIC,
dynamicThreshold: 0.7,
},
},
},
],
},
{ apiVersion: "v1beta" },
);

const prompt =
"What is the Google stock today?";

const result = await model.generateContent(prompt);
console.log(JSON.stringify(result.response));
// [END search_grounding]
}
async function runAll() {
// Comment out or delete any sample cases you don't want to run.
await searchGrounding();
}

runAll();

0 comments on commit 4d7925c

Please sign in to comment.