docs: Fix the code error at "Creating the agent function" (#922)

pull/1077/head
Jiang Yucheng 9 months ago committed by GitHub
parent 54c1caebcc
commit 561b3afd6e

@ -129,12 +129,10 @@ We start by pushing the `userInput` to the messages array. This time, we set the
```js ```js
async function agent(userInput) { async function agent(userInput) {
messages.push([ messages.push({
{ role: "user",
role: "user", content: userInput,
content: userInput, });
},
]);
const response = await openai.chat.completions.create({ const response = await openai.chat.completions.create({
model: "gpt-4", model: "gpt-4",
messages: messages, messages: messages,

Loading…
Cancel
Save