1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { OpenAI } from "https://esm.town/v/std/openai?v=2";
const openai = new OpenAI();
const functionExpression = await openai.chat.completions.create({
"messages": [
{ "role": "user", "content": "whats the weather in sf" },
],
tools: [
{
function: {
name: "weather",
parameters: {
"type": "object",
"properties": {
"location": { "type": "string", "description": "The city and state e.g. San Francisco, CA" },
"unit": { "type": "string", "enum": ["c", "f"] },
},
"required": ["location"],
},
},
type: "function",
},
],
model: "gpt-4",
});
console.log(functionExpression.choices[0].message.tool_calls);
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!
April 22, 2024