Get started with Shop0 components and integrate with your favorite APIs
The Vercel AI SDK powers the intelligent features in Shop0 components.
npm install ai @ai-sdk/openai
OPENAI_API_KEY=your_openai_api_key_here
import { openai } from '@ai-sdk/openai'
import { generateText } from 'ai'
const { text } = await generateText({
model: openai('gpt-4'),
prompt: 'Generate product description...'
})