@ai-sdk/groq
v1.0.0
Published
The **[Groq provider](https://sdk.vercel.ai/providers/ai-sdk-providers/groq)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the Groq chat and completion APIs and embedding model support for the Groq embeddings API.
Downloads
50,760
Readme
AI SDK - Groq Provider
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.
Setup
The Groq provider is available in the @ai-sdk/groq
module. You can install it with
npm i @ai-sdk/groq
Provider Instance
You can import the default provider instance groq
from @ai-sdk/groq
:
import { groq } from '@ai-sdk/groq';
Example
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.',
});
Documentation
Please check out the Groq provider documentation for more information.