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]}
-
+ + + +
-
)}