(chatId: string, runId: string)
| 1143 | [...chatKey(chatId), "debug-runs"] as const; |
| 1144 | |
| 1145 | const chatDebugRunKey = (chatId: string, runId: string) => |
| 1146 | [...chatDebugRunsKey(chatId), runId] as const; |
| 1147 | |
| 1148 | // Foreground poll cadence when the Debug tab is open. The error cadence |
| 1149 | // is slower so a transiently unreachable backend is not hammered, but |
no test coverage detected