diff --git a/src/llm/providers/openai-chatgpt-responses.ts b/src/llm/providers/openai-chatgpt-responses.ts index 6fcb1136721..f7556c95f06 100644 --- a/src/llm/providers/openai-chatgpt-responses.ts +++ b/src/llm/providers/openai-chatgpt-responses.ts @@ -837,13 +837,6 @@ function getOrCreateWebSocketDebugStats(sessionId: string): OpenAICodexWebSocket return stats; } -export function getOpenAICodexWebSocketDebugStats( - sessionId: string, -): OpenAICodexWebSocketDebugStats | undefined { - const stats = websocketDebugStats.get(sessionId); - return stats ? { ...stats } : undefined; -} - export function resetOpenAICodexWebSocketDebugStats(sessionId?: string): void { if (sessionId) { websocketDebugStats.delete(sessionId);