| 7 | const DEBUG_ERROR_CACHE_KEY = "nexent_agent_debug_errors"; |
| 8 | |
| 9 | export interface DebugErrorInfo { |
| 10 | agentId: number; |
| 11 | errorMessage: string; |
| 12 | timestamp: number; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Get cached debug errors for a specific agent |
nothing calls this directly
no outgoing calls
no test coverage detected