Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@ai-sdk/google
Advanced tools
The Google provider 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 `generateText`, `streamText`, `generateObject`, and `streamObjec
The Google provider 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 Google
from ai/google
and initialize a provider instance with various settings:
import { Google } from '@ai-sdk/google';
const google = new Google({
baseUrl: '', // optional base URL for proxies etc.
apiKey: '', // optional API key, default to env property GOOGLE_GENERATIVE_AI_API_KEY
});
The AI SDK also provides a shorthand google
import with a Google provider instance that uses defaults:
import { google } from '@ai-sdk/google';
You can create models that call the Google Generative AI API using the .generativeAI()
factory method.
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.generativeAI('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.generativeAI('models/gemini-pro', {
topK: 0.2,
});
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 33,154 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.