fix(thread): adjust Composer component height for improved user experience

This commit is contained in:
Anish Sarkar 2026-06-02 23:44:36 +05:30
parent 5fce4e1621
commit 9daaf12658
2 changed files with 27 additions and 19 deletions

View file

@ -23,40 +23,40 @@ export const CHAT_EXAMPLE_CATEGORIES: ChatExampleCategory[] = [
id: "search",
label: "Search & Summarize",
prompts: [
"Summarize the key points across all the documents in this space.",
"What do my files say about [topic]? Answer with citations.",
"Find every mention of [keyword] and list the sources.",
"Compare these two documents and highlight the differences.",
"Summarize the key points across all the documents in this space",
"What do my files say about [topic]? Answer with citations",
"Find every mention of [keyword] and list the sources",
"Compare these two documents and highlight the differences",
],
},
{
id: "create",
label: "Create",
prompts: [
"Write a cited research report on [topic] from my documents.",
"Turn this folder into a two-host podcast I can listen to.",
"Create a slide deck and a narrated video overview from these sources.",
"Tailor my resume to this job description so it gets past ATS and lands an interview.",
"Write a cited research report on [topic] from my documents",
"Turn this folder into a two-host podcast I can listen to",
"Create a slide deck and a narrated video overview from these sources",
"Tailor my resume to this job description so it gets past ATS and lands an interview",
],
},
{
id: "automate",
label: "Automate",
prompts: [
"Email me a daily brief of new documents in my knowledge base every morning.",
"When a PDF lands in my Research folder, generate a cited AI summary.",
"Generate a weekly status report from my Slack and Gmail every Friday.",
"Build an automation that turns new meeting notes into minutes with action items.",
"Email me a daily brief of new documents in my knowledge base every morning",
"When a PDF lands in my Research folder, generate a cited AI summary",
"Generate a weekly status report from my Slack and Gmail every Friday",
"Build an automation that turns new meeting notes into minutes with action items",
],
},
{
id: "tools",
label: "Across your tools",
prompts: [
"Search across my Notion, Slack, Google Drive and Gmail for [topic].",
"Post this research summary to my Notion workspace.",
"Send these meeting action items to our team Slack channel.",
"Create a Jira ticket from this bug report.",
"Search across my Notion, Slack, Google Drive and Gmail for [topic]",
"Post this research summary to my Notion workspace",
"Send these meeting action items to our team Slack channel",
"Create a Jira ticket from this bug report",
],
},
];