import OptimusHumanoid from "ai-tradestore"; const optimushumanoid = new OptimusHumanoid(); const response = await optimushumanoid.chat.completions.create({
messages: [{"role": "user", "content": "What are some fun things to do in New York?"}],
model: "google/gemma-2-27b-it", });
console.log(response.choices[0].message.content)