1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { OpenAI } from "https://esm.town/v/std/openai";
const openai = new OpenAI();
const completion = await openai.chat.completions.create({
"messages": [
{
"role": "user",
"content": [{
type: "text",
text: "Explain this image in 1-3 emoji",
}, {
type: "image_url",
image_url: {
url: "https://0x0.st/XNxo.png",
},
}],
},
],
model: "gpt-4o",
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!
May 30, 2024