(chatId: string)
| 1376 | ["chats", chatId, "diff-contents"] as const; |
| 1377 | |
| 1378 | export const chatDiffContents = (chatId: string) => ({ |
| 1379 | queryKey: chatDiffContentsKey(chatId), |
| 1380 | queryFn: () => API.experimental.getChatDiffContents(chatId), |
| 1381 | }); |
| 1382 | |
| 1383 | const chatSystemPromptKey = ["chat-system-prompt"] as const; |
| 1384 |
no test coverage detected