We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feb9b9d commit fbdceb2Copy full SHA for fbdceb2
public/app/plugins/datasource/prometheus/querybuilder/components/promQail/state/helpers.ts
@@ -272,6 +272,7 @@ function guessMetricFamily(metric: string): string {
272
* @returns true if the LLM plugin is enabled.
273
*/
274
export async function isLLMPluginEnabled(): Promise<boolean> {
275
+ return Promise.resolve(false); // LOGZ.IO GRAFANA CHANGE :: DEV-44665-grafana-upgrade-remove-llm
276
// Check if the LLM plugin is enabled.
277
// If not, we won't be able to make requests, so return early.
278
const openaiEnabled = llms.openai.health().then((response) => response.ok);
0 commit comments