1
2
3
4
5
6
7
8
9
10
11
12
import { OpenAI } from "npm:openai";
const openai = new OpenAI();
const completion = await openai.chat.completions.create({
"messages": [
{ "role": "user", "content": "คุณรู้จัก Gemini ไหม" },
],
model: "gpt-4o", // ถ้าใช้ของ std/openai จะได้แค่ gpt-4o-mini
max_tokens: 30,
});
console.log(completion.choices[0].message.content);