Skip to content

Commit

Permalink
chore: update suggested actions (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyphilemon authored Dec 19, 2024
1 parent bb03c51 commit 8d6eb09
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions components/suggested-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 8d6eb09

Please sign in to comment.