const response = await openai.chat.completions.create({ model: "gpt-3.5-turbo-1106", messages: messages, tools: tools, tool_choice: "auto", // auto is default, but we'll be explicit }); const responseMessage =