Public
Script
Readme

Use my own OpenAI API key to avoid limit

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);
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
July 26, 2024