Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@ai-sdk/google
Advanced tools
The Google provider for the [Vercel AI SDK](https://sdk.vercel.ai/docs) contains language model support for the [Google Generative AI](https://ai.google/discover/generativeai/) APIs. It creates language model objects that can be used with the `generateTex
The Google provider for the Vercel AI SDK contains language model support for the Google Generative AI APIs.
It creates language model objects that can be used with the generateText
, streamText
, generateObject
, and streamObject
AI functions.
The Google provider is available in the @ai-sdk/google
module. You can install it with
npm i @ai-sdk/google
You can import the default provider instance google
from @ai-sdk/google
:
import { google } from '@ai-sdk/google';
If you need a customized setup, you can import createGoogleGenerativeAI
from @ai-sdk/google
and create a provider instance with your settings:
import { createGoogleGenerativeAI } from '@ai-sdk/google';
const google = createGoogleGenerativeAI({
// custom settings
});
You can use the following optional settings to customize the Google Generative AI provider instance:
baseURL string
Use a different URL prefix for API calls, e.g. to use proxy servers.
The default prefix is https://generativelanguage.googleapis.com/v1beta
.
apiKey string
API key that is being send using the x-goog-api-key
header.
It defaults to the GOOGLE_GENERATIVE_AI_API_KEY
environment variable.
headers Record<string,string>
Custom headers to include in the requests.
You can create models that call the Google Generative AI API using the provider instance.
The first argument is the model id, e.g. models/gemini-pro
.
The models support tool calls and some have multi-modal capabilities.
const model = google('models/gemini-pro');
Google Generative AI models support also some model specific settings that are not part of the standard call settings. You can pass them as an options argument:
const model = google('models/gemini-pro', {
topK: 0.2,
});
The following optional settings are available for Google Generative AI models:
topK number
Optional. The maximum number of tokens to consider when sampling.
Models use nucleus sampling or combined Top-k and nucleus sampling. Top-k sampling considers the set of topK most probable tokens. Models running with nucleus sampling don't allow topK setting.
FAQs
The **[Google Generative AI provider](https://sdk.vercel.ai/providers/ai-sdk-providers/google-generative-ai)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the [Google Generative AI](https://ai.google/discover/generativ
The npm package @ai-sdk/google receives a total of 16,953 weekly downloads. As such, @ai-sdk/google popularity was classified as popular.
We found that @ai-sdk/google demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.