We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6a0e257 + 4f890d4 commit c4670f8Copy full SHA for c4670f8
1 file changed
src/components/PromptInput.tsx
@@ -35,10 +35,10 @@ interface PromptInputProps {
35
}
36
37
// Quiescence: how often to snapshot and how long output must be stable.
38
-const QUIESCENCE_POLL_MS = 1_000;
39
-const QUIESCENCE_THRESHOLD_MS = 2_500;
+const QUIESCENCE_POLL_MS = 500;
+const QUIESCENCE_THRESHOLD_MS = 1_500;
40
// Never auto-send before this (agent still booting).
41
-const AUTOSEND_MIN_WAIT_MS = 1_000;
+const AUTOSEND_MIN_WAIT_MS = 500;
42
// Give up after this.
43
const AUTOSEND_MAX_WAIT_MS = 45_000;
44
// After sending, how long to poll terminal output to confirm the prompt appeared.
0 commit comments