diff --git a/apps/shinkai-desktop/src/components/chat/conversation-footer.tsx b/apps/shinkai-desktop/src/components/chat/conversation-footer.tsx
index e11d586b9..a695607cf 100644
--- a/apps/shinkai-desktop/src/components/chat/conversation-footer.tsx
+++ b/apps/shinkai-desktop/src/components/chat/conversation-footer.tsx
@@ -292,6 +292,13 @@ function ConversationEmptyFooter() {
chatForm.setValue('message', promptSelected?.prompt ?? '');
}, [chatForm, promptSelected]);
+ useEffect(() => {
+ chatConfigForm.setValue(
+ 'stream',
+ promptSelected?.isToolNeeded ? false : DEFAULT_CHAT_CONFIG.stream,
+ );
+ }, [chatConfigForm, chatForm, promptSelected]);
+
useEffect(() => {
if (isWorkflowSelectedAndFilesPresent) {
chatForm.setValue(
diff --git a/apps/shinkai-desktop/src/pages/chat/empty-message.tsx b/apps/shinkai-desktop/src/pages/chat/empty-message.tsx
index cbb5b4419..65eb48b38 100644
--- a/apps/shinkai-desktop/src/pages/chat/empty-message.tsx
+++ b/apps/shinkai-desktop/src/pages/chat/empty-message.tsx
@@ -117,33 +117,49 @@ const EmptyMessage = () => {
{[
{
text: 'Search in Perplexity',
- prompt:
- 'Can you search in Perplexity? If you need more information, ask me a follow up question.',
+ prompt: 'Search in Perplexity for: ',
isToolNeeded: true,
},
{
text: 'Summarize a Youtube video',
- prompt:
- 'Can you help me summarize a youtube video? If you need more information, ask me a follow up question.',
+ prompt: 'Summarize a Youtube video: ',
isToolNeeded: true,
},
- {
- text: 'Tell me about the Roman Empire',
- prompt: 'Tell me about the Roman Empire',
- },
].map((suggestion) => (