Untitled

Anonymous
plain_text
08/19/2024 2:13 PM
312 B
211
Indexable
import OpenAI from "openai";
const openai = new OpenAI();
const completion = await openai.chat.completions.create({
    model: "gpt-4o",
    messages: [
        {"role": "user", "content": "write a haiku about ai"}
    ]
});
Editor is loading...
Leave a Comment