ChatGPT

From AWVVO
Jump to navigationJump to search

ChatGPT API key

https://platform.openai.com/docs/overview

Javascript quickstart

import OpenAI from "openai";
const client = new OpenAI();

const completion = await client.chat.completions.create({
    model: "gpt-4o",
    messages: [{
        role: "user",
        content: "Write a one-sentence bedtime story about a unicorn.",
    }],
});

console.log(completion.choices[0].message.content);