ChatGPT: Revision history

From AWVVO
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

16 March 2025

  • curprev 06:3406:34, 16 March 2025 Admin talk contribs 486 bytes +486 Created page with "== ChatGPT API key == https://platform.openai.com/docs/overview == Javascript quickstart == <syntaxhighlight lang="javascript" copy line highlight="0"> 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); </synta..."