chore: update suggested actions (#640)
This commit is contained in:
parent
bb03c516b5
commit
8d6eb09454
1 changed files with 13 additions and 3 deletions
|
|
@ -16,15 +16,25 @@ interface SuggestedActionsProps {
|
|||
function PureSuggestedActions({ chatId, append }: SuggestedActionsProps) {
|
||||
const suggestedActions = [
|
||||
{
|
||||
title: 'What is the weather',
|
||||
label: 'in San Francisco?',
|
||||
action: 'What is the weather in San Francisco?',
|
||||
title: 'What are the advantages',
|
||||
label: 'of using Next.js?',
|
||||
action: 'What are the advantages of using Next.js?',
|
||||
},
|
||||
{
|
||||
title: 'Write code that',
|
||||
label: `demonstrates djikstra's algorithm!`,
|
||||
action: `Write code that demonstrates djikstra's algorithm!`,
|
||||
},
|
||||
{
|
||||
title: 'Help me write an essay',
|
||||
label: `about silicon valley!`,
|
||||
action: `Help me write an essay about silicon valley!`,
|
||||
},
|
||||
{
|
||||
title: 'What is the weather',
|
||||
label: 'in San Francisco?',
|
||||
action: 'What is the weather in San Francisco?',
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue