Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 16,906 Bytes
a56db97 32f62c3 b1d24de a56db97 b1d24de a56db97 aaf7d3b a56db97 b1d24de aaf7d3b b1d24de b29799c 4485208 aaf7d3b a56db97 b1d24de 32f62c3 a56db97 32f62c3 a56db97 b1d24de b29799c aaf7d3b a56db97 b1d24de aaf7d3b bbfa431 aaf7d3b bbfa431 aaf7d3b bbfa431 aaf7d3b bbfa431 aaf7d3b bbfa431 aaf7d3b a56db97 b1d24de aaf7d3b bbfa431 aaf7d3b b1d24de b29799c b1d24de b29799c b1d24de b29799c b1d24de b29799c b1d24de a56db97 aaf7d3b bbfa431 aaf7d3b bbfa431 0bc8e38 bbfa431 0bc8e38 bbfa431 0bc8e38 aaf7d3b a56db97 226dea1 b29799c 226dea1 b29799c 226dea1 b29799c 226dea1 b29799c 226dea1 4485208 a56db97 b29799c 0bc8e38 b29799c bbfa431 b29799c 0bc8e38 a56db97 aaf7d3b a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 32f62c3 a56db97 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 | import { useCallback, useEffect, useRef } from 'react';
import { useAgentStore } from '@/store/agentStore';
import { useSessionStore } from '@/store/sessionStore';
import { useLayoutStore } from '@/store/layoutStore';
import type { AgentEvent } from '@/types/events';
import type { Message, TraceLog } from '@/types/agent';
const WS_RECONNECT_DELAY = 1000;
const WS_MAX_RECONNECT_DELAY = 30000;
interface UseAgentWebSocketOptions {
sessionId: string | null;
onReady?: () => void;
onError?: (error: string) => void;
}
export function useAgentWebSocket({
sessionId,
onReady,
onError,
}: UseAgentWebSocketOptions) {
const wsRef = useRef<WebSocket | null>(null);
const reconnectTimeoutRef = useRef<number | null>(null);
const reconnectDelayRef = useRef(WS_RECONNECT_DELAY);
const {
addMessage,
updateMessage,
setProcessing,
setConnected,
setPendingApprovals,
setError,
addTraceLog,
updateTraceLog,
clearTraceLogs,
setPanelContent,
setPanelTab,
setActivePanelTab,
clearPanelTabs,
setPlan,
setCurrentTurnMessageId,
updateCurrentTurnTrace,
} = useAgentStore();
const { setRightPanelOpen, setLeftSidebarOpen } = useLayoutStore();
const { setSessionActive } = useSessionStore();
const handleEvent = useCallback(
(event: AgentEvent) => {
if (!sessionId) return;
switch (event.event_type) {
case 'ready':
setConnected(true);
setProcessing(false);
setSessionActive(sessionId, true);
onReady?.();
break;
case 'processing':
setProcessing(true);
clearTraceLogs();
// Don't clear panel tabs here - they should persist during approval flow
// Tabs will be cleared when a new tool_call sets up new content
setCurrentTurnMessageId(null); // Start a new turn
break;
case 'assistant_message': {
const content = (event.data?.content as string) || '';
const currentTrace = useAgentStore.getState().traceLogs;
const currentTurnMsgId = useAgentStore.getState().currentTurnMessageId;
if (currentTurnMsgId) {
// Update existing message - add segments chronologically
const messages = useAgentStore.getState().getMessages(sessionId);
const existingMsg = messages.find(m => m.id === currentTurnMsgId);
if (existingMsg) {
const segments = existingMsg.segments ? [...existingMsg.segments] : [];
// If there are pending traces, add them as a tools segment first
if (currentTrace.length > 0) {
segments.push({ type: 'tools', tools: [...currentTrace] });
clearTraceLogs();
}
// Add the new text segment
if (content) {
segments.push({ type: 'text', content });
}
updateMessage(sessionId, currentTurnMsgId, {
content: existingMsg.content + '\n\n' + content,
segments,
});
}
} else {
// Create new message
const messageId = `msg_${Date.now()}`;
const segments: Array<{ type: 'text' | 'tools'; content?: string; tools?: typeof currentTrace }> = [];
// Add any pending traces first
if (currentTrace.length > 0) {
segments.push({ type: 'tools', tools: [...currentTrace] });
clearTraceLogs();
}
// Add the text
if (content) {
segments.push({ type: 'text', content });
}
const message: Message = {
id: messageId,
role: 'assistant',
content,
timestamp: new Date().toISOString(),
segments,
};
addMessage(sessionId, message);
setCurrentTurnMessageId(messageId);
}
break;
}
case 'tool_call': {
const toolName = (event.data?.tool as string) || 'unknown';
const args = (event.data?.arguments as Record<string, any>) || {};
// Don't display plan_tool in trace logs (it shows up elsewhere in the UI)
if (toolName !== 'plan_tool') {
const log: TraceLog = {
id: `tool_${Date.now()}`,
type: 'call',
text: `Agent is executing ${toolName}...`,
tool: toolName,
timestamp: new Date().toISOString(),
completed: false,
// Store args for auto-exec message creation later
args: toolName === 'hf_jobs' ? args : undefined,
};
addTraceLog(log);
// Update the current turn message's trace in real-time
updateCurrentTurnTrace(sessionId);
}
// Auto-expand Right Panel for specific tools
if (toolName === 'hf_jobs' && (args.operation === 'run' || args.operation === 'scheduled run') && args.script) {
// Clear any existing tabs from previous jobs before setting new script
clearPanelTabs();
// Use tab system for jobs - add script tab immediately
setPanelTab({
id: 'script',
title: 'Script',
content: args.script,
language: 'python',
parameters: args
});
setActivePanelTab('script');
setRightPanelOpen(true);
setLeftSidebarOpen(false);
} else if (toolName === 'hf_repo_files' && args.operation === 'upload' && args.content) {
setPanelContent({
title: `File Upload: ${args.path || 'unnamed'}`,
content: args.content,
parameters: args,
language: args.path?.endsWith('.py') ? 'python' : undefined
});
setRightPanelOpen(true);
setLeftSidebarOpen(false);
}
console.log('Tool call:', toolName, args);
break;
}
case 'tool_output': {
const toolName = (event.data?.tool as string) || 'unknown';
const output = (event.data?.output as string) || '';
const success = event.data?.success as boolean;
// Mark the corresponding trace log as completed and store the output
updateTraceLog(toolName, { completed: true, output, success });
// Update the current turn message's trace in real-time
updateCurrentTurnTrace(sessionId);
// Special handling for hf_jobs - update or create job message with output
if (toolName === 'hf_jobs') {
const messages = useAgentStore.getState().getMessages(sessionId);
const traceLogs = useAgentStore.getState().traceLogs;
// Find existing approval message for this job
let jobMsg = [...messages].reverse().find(m => m.approval);
if (!jobMsg) {
// No approval message exists - this was an auto-executed job
// Create a job execution message so user can see results
const jobTrace = [...traceLogs].reverse().find(t => t.tool === 'hf_jobs');
const args = jobTrace?.args || {};
const autoExecMessage: Message = {
id: `msg_auto_${Date.now()}`,
role: 'assistant',
content: '',
timestamp: new Date().toISOString(),
approval: {
status: 'approved', // Auto-approved (no user action needed)
batch: {
tools: [{
tool: toolName,
arguments: args,
tool_call_id: `auto_${Date.now()}`
}],
count: 1
}
},
toolOutput: output
};
addMessage(sessionId, autoExecMessage);
console.log('Created auto-exec message with tool output:', toolName);
} else {
// Update existing approval message
const currentOutput = jobMsg.toolOutput || '';
const newOutput = currentOutput ? currentOutput + '\n\n' + output : output;
useAgentStore.getState().updateMessage(sessionId, jobMsg.id, {
toolOutput: newOutput
});
console.log('Updated job message with tool output:', toolName);
}
}
// Don't create message bubbles for tool outputs - they only show in trace logs
console.log('Tool output:', toolName, success);
break;
}
case 'tool_log': {
const toolName = (event.data?.tool as string) || 'unknown';
const log = (event.data?.log as string) || '';
if (toolName === 'hf_jobs') {
const currentTabs = useAgentStore.getState().panelTabs;
const logsTab = currentTabs.find(t => t.id === 'logs');
// Append to existing logs tab or create new one
const newContent = logsTab
? logsTab.content + '\n' + log
: '--- Job execution started ---\n' + log;
setPanelTab({
id: 'logs',
title: 'Logs',
content: newContent,
language: 'text'
});
// Auto-switch to logs tab when logs start streaming
setActivePanelTab('logs');
if (!useLayoutStore.getState().isRightPanelOpen) {
setRightPanelOpen(true);
}
}
break;
}
case 'plan_update': {
const plan = (event.data?.plan as any[]) || [];
setPlan(plan);
if (!useLayoutStore.getState().isRightPanelOpen) {
setRightPanelOpen(true);
}
break;
}
case 'approval_required': {
const tools = event.data?.tools as Array<{
tool: string;
arguments: Record<string, unknown>;
tool_call_id: string;
}>;
const count = (event.data?.count as number) || 0;
// Create a persistent message for the approval request
const message: Message = {
id: `msg_approval_${Date.now()}`,
role: 'assistant',
content: '', // Content is handled by the approval UI
timestamp: new Date().toISOString(),
approval: {
status: 'pending',
batch: { tools, count }
}
};
addMessage(sessionId, message);
// Show the first tool's content in the panel so users see what they're approving
if (tools && tools.length > 0) {
const firstTool = tools[0];
const args = firstTool.arguments as Record<string, any>;
clearPanelTabs();
if (firstTool.tool === 'hf_jobs' && args.script) {
setPanelTab({
id: 'script',
title: 'Script',
content: args.script,
language: 'python',
parameters: args
});
setActivePanelTab('script');
} else if (firstTool.tool === 'hf_repo_files' && args.content) {
const filename = args.path || 'file';
const isPython = filename.endsWith('.py');
setPanelTab({
id: 'content',
title: filename.split('/').pop() || 'Content',
content: args.content,
language: isPython ? 'python' : 'text',
parameters: args
});
setActivePanelTab('content');
} else {
// For other tools, show args as JSON
setPanelTab({
id: 'args',
title: firstTool.tool,
content: JSON.stringify(args, null, 2),
language: 'json',
parameters: args
});
setActivePanelTab('args');
}
setRightPanelOpen(true);
setLeftSidebarOpen(false);
}
// Clear currentTurnMessageId so subsequent assistant_message events create a new message below the approval
setCurrentTurnMessageId(null);
// We don't set pendingApprovals in the global store anymore as the message handles the UI
setPendingApprovals(null);
setProcessing(false);
break;
}
case 'turn_complete':
setProcessing(false);
setCurrentTurnMessageId(null); // Clear the current turn
break;
case 'compacted': {
const oldTokens = event.data?.old_tokens as number;
const newTokens = event.data?.new_tokens as number;
console.log(`Context compacted: ${oldTokens} -> ${newTokens} tokens`);
break;
}
case 'error': {
const errorMsg = (event.data?.error as string) || 'Unknown error';
setError(errorMsg);
setProcessing(false);
onError?.(errorMsg);
break;
}
case 'shutdown':
setConnected(false);
setProcessing(false);
break;
case 'interrupted':
setProcessing(false);
break;
case 'undo_complete':
// Could remove last messages from store
break;
default:
console.log('Unknown event:', event);
}
},
// Zustand setters are stable, so we don't need them in deps
// eslint-disable-next-line react-hooks/exhaustive-deps
[sessionId, onReady, onError]
);
const connect = useCallback(() => {
if (!sessionId) return;
// Don't connect if already connected or connecting
if (wsRef.current?.readyState === WebSocket.OPEN ||
wsRef.current?.readyState === WebSocket.CONNECTING) {
return;
}
// Connect directly to backend (Vite doesn't proxy WebSockets)
const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
// In development, connect directly to backend port 7860
// In production, use the same host
const isDev = import.meta.env.DEV;
const host = isDev ? '127.0.0.1:7860' : window.location.host;
const wsUrl = `${protocol}//${host}/api/ws/${sessionId}`;
console.log('Connecting to WebSocket:', wsUrl);
const ws = new WebSocket(wsUrl);
ws.onopen = () => {
console.log('WebSocket connected');
setConnected(true);
reconnectDelayRef.current = WS_RECONNECT_DELAY;
};
ws.onmessage = (event) => {
try {
const data = JSON.parse(event.data) as AgentEvent;
handleEvent(data);
} catch (e) {
console.error('Failed to parse WebSocket message:', e);
}
};
ws.onerror = (error) => {
console.error('WebSocket error:', error);
};
ws.onclose = (event) => {
console.log('WebSocket closed', event.code, event.reason);
setConnected(false);
// Only reconnect if it wasn't a normal closure and session still exists
if (event.code !== 1000 && sessionId) {
// Attempt to reconnect with exponential backoff
if (reconnectTimeoutRef.current) {
clearTimeout(reconnectTimeoutRef.current);
}
reconnectTimeoutRef.current = window.setTimeout(() => {
reconnectDelayRef.current = Math.min(
reconnectDelayRef.current * 2,
WS_MAX_RECONNECT_DELAY
);
connect();
}, reconnectDelayRef.current);
}
};
wsRef.current = ws;
}, [sessionId, handleEvent]);
const disconnect = useCallback(() => {
if (reconnectTimeoutRef.current) {
clearTimeout(reconnectTimeoutRef.current);
reconnectTimeoutRef.current = null;
}
if (wsRef.current) {
wsRef.current.close();
wsRef.current = null;
}
setConnected(false);
}, []);
const sendPing = useCallback(() => {
if (wsRef.current?.readyState === WebSocket.OPEN) {
wsRef.current.send(JSON.stringify({ type: 'ping' }));
}
}, []);
// Connect when sessionId changes (with a small delay to ensure session is ready)
useEffect(() => {
if (!sessionId) {
disconnect();
return;
}
// Small delay to ensure session is fully created on backend
const timeoutId = setTimeout(() => {
connect();
}, 100);
return () => {
clearTimeout(timeoutId);
disconnect();
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [sessionId]);
// Heartbeat
useEffect(() => {
const interval = setInterval(sendPing, 30000);
return () => clearInterval(interval);
}, [sendPing]);
return {
isConnected: wsRef.current?.readyState === WebSocket.OPEN,
connect,
disconnect,
};
}
|