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

This commit is contained in:
Jiang Yucheng 2023-12-19 10:14:50 +08:00 committed by GitHub
parent 6699f75e6c
commit 72c167e7de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,