AI SDK - Google Vertex AI Provider
The Google Vertex provider for the AI SDK contains language model support for the Google Vertex AI APIs.
Setup
The Google provider is available in the @ai-sdk/google-vertex
module. You can install it with
npm i @ai-sdk/google-vertex
Provider Instance
You can import the default provider instance vertex
from @ai-sdk/google-vertex
:
import { vertex } from '@ai-sdk/google-vertex';
Example
import { vertex } from '@ai-sdk/google-vertex'
import { generateText } from 'ai'
const { text } = await generateText({
model: vertex('gemini-1.5-flash')
prompt: 'Write a vegetarian lasagna recipe for 4 people.'
})
Documentation
Please check out the Google Vertex provider for more information.