From f25115da691156078679b461a4dfe72f07c92853 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 31 Mar 2026 10:07:41 -0600 Subject: [PATCH] Add quick links to new chats --- web/public/locales/en/views/chat.json | 8 ++++++-- web/src/components/chat/ChatStartingState.tsx | 8 ++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/web/public/locales/en/views/chat.json b/web/public/locales/en/views/chat.json index ec9e65e6e5..bafe488a6b 100644 --- a/web/public/locales/en/views/chat.json +++ b/web/public/locales/en/views/chat.json @@ -15,10 +15,14 @@ "suggested_requests": "Try asking:", "starting_requests": { "show_recent_events": "Show recent events", - "show_camera_status": "Show camera status" + "show_camera_status": "Show camera status", + "recap": "What happened while I was away?", + "watch_camera": "Watch a camera for activity" }, "starting_requests_prompts": { "show_recent_events": "Show me the recent events from the last hour", - "show_camera_status": "What is the current status of my cameras?" + "show_camera_status": "What is the current status of my cameras?", + "recap": "What happened while I was away?", + "watch_camera": "Watch the front door and let me know if anyone shows up" } } diff --git a/web/src/components/chat/ChatStartingState.tsx b/web/src/components/chat/ChatStartingState.tsx index 2d0adaa2fd..d2309223f1 100644 --- a/web/src/components/chat/ChatStartingState.tsx +++ b/web/src/components/chat/ChatStartingState.tsx @@ -22,6 +22,14 @@ export function ChatStartingState({ onSendMessage }: ChatStartingStateProps) { label: t("starting_requests.show_camera_status"), prompt: t("starting_requests_prompts.show_camera_status"), }, + { + label: t("starting_requests.recap"), + prompt: t("starting_requests_prompts.recap"), + }, + { + label: t("starting_requests.watch_camera"), + prompt: t("starting_requests_prompts.watch_camera"), + }, ]; const handleRequestClick = (prompt: string) => {