Untitled
Anonymous
plain_text
10/07/2024 6:04 PM
300 B
18
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