(queryClient: QueryClient, chatId: string)
| 1211 | }); |
| 1212 | |
| 1213 | const invalidateChatDebugRuns = (queryClient: QueryClient, chatId: string) => { |
| 1214 | return queryClient.invalidateQueries({ |
| 1215 | queryKey: chatDebugRunsKey(chatId), |
| 1216 | }); |
| 1217 | }; |
| 1218 | |
| 1219 | export const createChat = (queryClient: QueryClient) => ({ |
| 1220 | mutationFn: (req: TypesGen.CreateChatRequest) => |
no test coverage detected