Skip to content

Commit 478d6de

Browse files
committed
1570 client - Improve thread suggestions
1 parent 22594d1 commit 478d6de

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

client/src/components/assistant-ui/thread.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118,24 +118,24 @@ const ThreadSuggestions: FC = () => {
118118
<div className="aui-thread-welcome-suggestions grid w-full gap-2 pb-4 @md:grid-cols-2">
119119
{[
120120
{
121-
title: "What's the weather",
122-
label: "in San Francisco?",
123-
action: "What's the weather in San Francisco?",
121+
title: "Describe what this workflow",
122+
label: "does end-to-end.",
123+
action: "Describe what this workflow does end-to-end",
124124
},
125125
{
126-
title: "Explain React hooks",
127-
label: "like useState and useEffect",
128-
action: "Explain React hooks like useState and useEffect",
126+
title: "Which properties",
127+
label: "of this node are required?",
128+
action: "Which properties of this node are required?",
129129
},
130130
{
131-
title: "Write a SQL query",
132-
label: "to find top customers",
133-
action: "Write a SQL query to find top customers",
131+
title: "Search for an action",
132+
label: "that can send an email",
133+
action: "Search for an action that can send an email",
134134
},
135135
{
136-
title: "Create a meal plan",
137-
label: "for healthy weight loss",
138-
action: "Create a meal plan for healthy weight loss",
136+
title: "How do I implement",
137+
label: "conditional branching in workflows?",
138+
action: "How do I implement conditional branching in workflows?",
139139
},
140140
].map((suggestedAction, index) => (
141141
<m.div

0 commit comments

Comments
 (0)