constNurmoAI=require("nurmoai");const nurmo =newNurmoAI({apiKey: process.env['NurmoAI_KEY'],// This is the default and can be omitted});asyncfunctionMain(){const aiResponse =await nurmo.createCompletion({messages:[{role:"user",content:"Say this is a test"}],model:"nurmo-3",character:"Batman"});console.log(aiResponse);}Main()