"""V13: Auto-continue feature - fixed SyntaxError, no raw \u in Python source""" import os ROOT = "/source/frontend/src" EVENTS = f"{ROOT}/types/events.ts" SSE = f"{ROOT}/lib/sse-chat-transport.ts" HOOK = f"{ROOT}/hooks/useAgentChat.ts" INPUT = f"{ROOT}/components/Chat/ChatInput.tsx" SESS = f"{ROOT}/components/SessionChat.tsx" AGENT = "/app/agent/core/agent_loop.py" # Vietnamese text as hex to avoid \u issues in Python source PAUSE_TEXT = "T\\u1ea1m d\\u1eebng t\\u1ef1 \\u0111\\u1ed9ng ti\\u1ebfp t\\u1ee5c (10s)" CONTINUE_TEXT = "[TIEP TUC] Task chua hoan thanh:" def ok(f): print(f"OK: {f}") # --- 1. events.ts --- with open(EVENTS) as f: c = f.read() if "'task_incomplete'" not in c: c = c.replace(" | 'interrupted'", " | 'interrupted'\n | 'task_incomplete'") with open(EVENTS, 'w') as f: f.write(c) ok("events.ts") # --- 2. sse.ts --- with open(SSE) as f: c = f.read() if "case 'task_incomplete'" not in c: block = """ case 'task_incomplete': (sideChannel as any).onTaskIncomplete( (event.data?.incomplete_plan as Array<{ id: string; content: string; status: string }>) || [], ); break; default:""" c = c.replace("\n default:", "\n" + block) with open(SSE, 'w') as f: f.write(c) ok("sse.ts") # --- 3. useAgentChat.ts --- with open(HOOK) as f: content = f.read() if "useState" not in content: content = content.replace( "import { useCallback, useEffect, useMemo, useRef } from 'react';", "import { useCallback, useEffect, useMemo, useRef, useState } from 'react';" ) state_block = """\ // Auto-continue state const [_showAc, _setShowAc] = useState(false); const _acRef = useRef>([]); """ if "_showAc" not in content: content = content.replace( "callbacksRef.current = { onReady, onError, onSessionDead };", "callbacksRef.current = { onReady, onError, onSessionDead };\n" + state_block ) handler_code = """\ // Auto-continue check if ((data as any).ac_plan) { _acRef.current = (data as any).ac_plan; _setShowAc(true); return; } """ if "ac_plan" not in content: content = content.replace( "onSessionUpdate: (data) => {", "onSessionUpdate: (data) => {\n" + handler_code ) cancel_effect = """\ const _acCancel = useCallback(() => { _setShowAc(false); }, []); useEffect(() => { if (!_showAc) return; const plan = _acRef.current; const timer = setTimeout(() => { const s = chatActionsRef.current.setMessages; const m = chatActionsRef.current.messages; if (s && plan.length > 0) { const t = plan.map((i: { content: string }) => '- ' + i.content).join('\\\\n'); const nu = { id: 'ac-'+Date.now(), role: 'user' as const, parts: [{ type: 'text' as const, text: '""" + CONTINUE_TEXT + "\\\\n' + t }], content: '' };\n" cancel_effect += """\ s([...m, nu]); } _setShowAc(false); }, 10000); return () => clearTimeout(timer); }, [_showAc]); """ if "_acCancel" not in content: content = content.replace( " return {\n messages: chat.messages,", cancel_effect + " return {\n messages: chat.messages," ) if "_showAc," not in content: content = content.replace( "refreshMessages,\n };", "refreshMessages,\n _showAc,\n _acCancel,\n };" ) with open(HOOK, 'w') as f: f.write(content) ok("useAgentChat.ts") # --- 4. ChatInput.tsx --- with open(INPUT) as f: content = f.read() if "Button" not in content: content = content.replace( " Tooltip,", " Tooltip,\n Button," ) if "_showAc" not in content: content = content.replace( "placeholder?: string;", "placeholder?: string;\n _showAc?: boolean;\n _acCancel?: () => void;" ) content = content.replace( "placeholder = 'Ask anything...' }: ChatInputProps) {", "placeholder = 'Ask anything...', _showAc = false, _acCancel }: ChatInputProps) {" ) pause_marker = "TAM_DUNG" if pause_marker not in content: btn = """ {_showAc && _acCancel && ( )} """ content = content.replace("