// 1. Change the importimport OpenAI from '@openfiles-ai/sdk/openai' // ← Changed from 'openai'const ai = new OpenAI({ apiKey: process.env.OPENAI_API_KEY, // ← Same as before openFilesApiKey: process.env.OPENFILES_API_KEY // ← Add this line})// Everything else stays exactly the sameconst response = await ai.chat.completions.create({ model: 'gpt-4', messages: [{ role: 'user', content: 'Create a shopping list for making chocolate chip cookies and save it as shopping-list.md' }]})console.log(response.choices[0].message.content)// "I've created a shopping list with all the ingredients // you'll need for chocolate chip cookies..."