(queryClient: QueryClient, chatId: string)
| 1337 | }); |
| 1338 | |
| 1339 | export const interruptChat = (queryClient: QueryClient, chatId: string) => ({ |
| 1340 | mutationFn: () => API.experimental.interruptChat(chatId), |
| 1341 | onSuccess: () => { |
| 1342 | void invalidateChatDebugRuns(queryClient, chatId); |
| 1343 | }, |
| 1344 | }); |
| 1345 | |
| 1346 | export const deleteChatQueuedMessage = ( |
| 1347 | queryClient: QueryClient, |
no test coverage detected