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

pull/1077/head
Jiang Yucheng 6 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
async function agent(userInput) {
messages.push([
{
role: "user",
content: userInput,
},
]);
messages.push({
role: "user",
content: userInput,
});
const response = await openai.chat.completions.create({
model: "gpt-4",
messages: messages,

Loading…
Cancel
Save