We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34754e5 commit 8f43009Copy full SHA for 8f43009
README.md
@@ -334,16 +334,14 @@ As discussed in [Customizing the role per prompt](#customizing-the-role-per-prom
334
335
```js
336
const followup = await session.prompt([
337
-[
338
- {
339
- role: "user",
340
- content: "I'm nervous about my presentation tomorrow"
341
- },
342
343
- role: "assistant"
344
- content: "Presentations are tough!"
345
- }
346
- ]
+ {
+ role: "user",
+ content: "I'm nervous about my presentation tomorrow"
+ },
+ role: "assistant"
+ content: "Presentations are tough!"
+ }
347
]);
348
349
// `followup` might be something like "Here are some tips for staying calm.", or
0 commit comments