Skip to content

Commit c4670f8

Browse files
committed
Merge branch 'task/sending-the-prompt-from-task-dialog-to'
2 parents 6a0e257 + 4f890d4 commit c4670f8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/PromptInput.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ interface PromptInputProps {
3535
}
3636

3737
// 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;
38+
const QUIESCENCE_POLL_MS = 500;
39+
const QUIESCENCE_THRESHOLD_MS = 1_500;
4040
// Never auto-send before this (agent still booting).
41-
const AUTOSEND_MIN_WAIT_MS = 1_000;
41+
const AUTOSEND_MIN_WAIT_MS = 500;
4242
// Give up after this.
4343
const AUTOSEND_MAX_WAIT_MS = 45_000;
4444
// After sending, how long to poll terminal output to confirm the prompt appeared.

0 commit comments

Comments
 (0)