MCPcopy Index your code
hub / github.com/coder/coder / chatDebugRunsKey

Function chatDebugRunsKey

site/src/api/queries/chats.ts:1142–1143  ·  view source on GitHub ↗
(chatId: string)

Source from the content-addressed store, hash-verified

1140});
1141
1142export const chatDebugRunsKey = (chatId: string) =>
1143 [...chatKey(chatId), "debug-runs"] as const;
1144
1145const chatDebugRunKey = (chatId: string, runId: string) =>
1146 [...chatDebugRunsKey(chatId), runId] as const;

Callers 5

seedAllActiveQueriesFunction · 0.90
chats.test.tsFile · 0.90
chatDebugRunKeyFunction · 0.85
chatDebugRunsFunction · 0.85
invalidateChatDebugRunsFunction · 0.85

Calls 1

chatKeyFunction · 0.85

Tested by 1

seedAllActiveQueriesFunction · 0.72