Edit adjacencies.yaml – add up to 5 source integrations.
router.post('/generate', async (req, res) => const adjective = req.body; const completion = await openai.chat.completions.create( model: 'gpt-3.5-turbo', messages: [ role: 'user', content: List 5 things associated with "$adjective". Return JSON. ], ); const items = JSON.parse(completion.choices[0].message.content); res.json( items ); ); adj portal starter