fix: add avatar_url to AgentProfile for dashboard

This commit is contained in:
Apple
2025-11-28 09:10:34 -08:00
parent acc06f41d3
commit 909d1cb314
2 changed files with 2 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ export interface AgentProfile {
agent_id: string;
display_name: string;
kind: string;
avatar_url?: string;
status: 'online' | 'offline' | 'degraded' | 'training' | 'maintenance';
node_id?: string;
roles: string[];