diff --git a/public/app/features/dashboard/components/GenAI/utils.ts b/public/app/features/dashboard/components/GenAI/utils.ts index 4692236177797..db3f106107597 100644 --- a/public/app/features/dashboard/components/GenAI/utils.ts +++ b/public/app/features/dashboard/components/GenAI/utils.ts @@ -60,6 +60,7 @@ export function getDashboardChanges(dashboard: DashboardModel): { * @returns true if the LLM plugin is enabled. */ export async function isLLMPluginEnabled() { + return Promise.resolve(false); // LOGZ.IO GRAFANA CHANGE :: DEV-44665-grafana-upgrade-remove-llm // Check if the LLM plugin is enabled. // If not, we won't be able to make requests, so return early. return llms.openai.health().then((response) => response.ok);