From a833017da137ffd3e3f052a30c0ff5b7eb267966 Mon Sep 17 00:00:00 2001 From: Kerem Yilmaz Date: Wed, 9 Oct 2024 08:39:12 -0700 Subject: [PATCH] Update the example prompts and add overflow (#943) --- skyvern-frontend/src/routes/tasks/create/PromptBox.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/skyvern-frontend/src/routes/tasks/create/PromptBox.tsx b/skyvern-frontend/src/routes/tasks/create/PromptBox.tsx index eb4c03e4..cad34699 100644 --- a/skyvern-frontend/src/routes/tasks/create/PromptBox.tsx +++ b/skyvern-frontend/src/routes/tasks/create/PromptBox.tsx @@ -59,6 +59,9 @@ function createTemplateTaskFromTaskGenerationParameters( const examplePrompts = [ "What is the top post on hackernews?", "Navigate to Google Finance and search for AAPL", + "What is the top NYT bestseller?", + "What is the top ranked football team?", + "Find the top selling electrical connector on finditparts", ]; function PromptBox() { @@ -173,12 +176,12 @@ function PromptBox() { -
+
{examplePrompts.map((examplePrompt) => { return (
{ setPrompt(examplePrompt); }}