From fa58f2ce8f27b805fb1522128dba6cbd72a77ff2 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Fri, 8 Mar 2024 05:00:48 -0500 Subject: [PATCH] add note when input mode is video --- frontend/src/App.tsx | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index f0825a8..43c2a15 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -384,11 +384,25 @@ function App() { {/* Show code preview only when coding */} {appState === AppState.CODING && (
+ {/* Speed disclaimer for video mode */} + {inputMode === "video" && ( +
+ Code generation from videos can take 3-4 minutes. We do + multiple passes to get the best result. Please be patient. +
+ )} +
{executionConsole.slice(-1)[0]}
-
+ + + +
-
)}