Cb 2 on February 10, 2025 Get link Facebook X Pinterest Email Other Apps import OpenAI from "openai"; const openai = new OpenAI(); const completion = await openai.chat.completions.create({ model: "gpt-4o", store: true, messages: [ {"role": "user", "content": "write a haiku about ai"} ] }); Comments
Comments
Post a Comment