()
| 1383 | const chatSystemPromptKey = ["chat-system-prompt"] as const; |
| 1384 | |
| 1385 | export const chatSystemPrompt = () => ({ |
| 1386 | queryKey: chatSystemPromptKey, |
| 1387 | queryFn: () => API.experimental.getChatSystemPrompt(), |
| 1388 | }); |
| 1389 | |
| 1390 | export const updateChatSystemPrompt = (queryClient: QueryClient) => ({ |
| 1391 | mutationFn: (req: TypesGen.UpdateChatSystemPromptRequest) => |
no test coverage detected