You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/thinking-block/thinking-block.tsx
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,9 @@ export function ThinkingBlock({
28
28
const[expanded,setExpanded]=useState(false)
29
29
constpanelRef=useRef<HTMLDivElement>(null)
30
30
constwasActiveRef=useRef<boolean|null>(null)
31
-
// Suppress active thinking until it exceeds 5s. Completed-<=5s is
32
-
// filtered upstream in message-content, so if we're mounted with
33
-
// isActive=false we've already passed that gate.
31
+
// Suppress active thinking until it exceeds MIN_VISIBLE_THINKING_MS.
32
+
// Completed-<=threshold is filtered upstream in message-content, so if
33
+
// we're mounted with isActive=false we've already passed that gate.
0 commit comments