(queryClient: QueryClient)
| 1744 | }); |
| 1745 | |
| 1746 | const invalidateChatConfigurationQueries = async (queryClient: QueryClient) => { |
| 1747 | await Promise.all([ |
| 1748 | queryClient.invalidateQueries({ queryKey: chatProviderConfigsKey }), |
| 1749 | queryClient.invalidateQueries({ queryKey: chatModelConfigsKey }), |
| 1750 | queryClient.invalidateQueries({ queryKey: chatModelsKey }), |
| 1751 | ]); |
| 1752 | }; |
| 1753 | |
| 1754 | const generatedAIProviderName = (provider: string): string => { |
| 1755 | const suffix = |
no test coverage detected