The Groq provider for the AI SDK contains language model support for the Groq chat and completion APIs and embedding model support for the Groq embeddings API.
The Groq provider is available in the @ai-sdk/groq
module. You can install it with
npm i @ai-sdk/groq
You can import the default provider instance groq
from @ai-sdk/groq
:
import { groq } from '@ai-sdk/groq';
import { groq } from '@ai-sdk/groq';
import { generateText } from 'ai';
const { text } = await generateText({
model: groq('gemma2-9b-it'),
prompt: 'Write a vegetarian lasagna recipe for 4 people.',
});
Please check out the Groq provider documentation for more information.