mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* wip * add GenAI to scenes dashboard settings * rework title and description into controlled inputs --------- Co-authored-by: Sergej-Vlasov <sergej.s.vlasov@gmail.com>
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
|
|
import { getDashboardSrv } from '../../services/DashboardSrv';
|
|
|
|
import { GenAIButton } from './GenAIButton';
|
|
import { EventTrackingSrc } from './tracking';
|
|
import { getDashboardPanelPrompt, Message, Role } from './utils';
|
|
|
|
interface GenAIDashTitleButtonProps {
|
|
onGenerate: (description: string) => void;
|
|
}
|
|
|
|
const DASH_TITLE_CHAR_LIMIT = 50;
|
|
|
|
const TITLE_GENERATION_STANDARD_PROMPT =
|
|
'You are an expert in creating Grafana Dashboards.\n' +
|
|
'Your goal is to write a concise dashboard title.\n' +
|
|
"You will be given the title and description of the dashboard's panels.\n" +
|
|
'The dashboard title is meant to say what it shows on one line for users to navigate to it.\n' +
|
|
'If the dashboard has no panels, the title should be "Empty dashboard"\n' +
|
|
'There should be no numbers in the title.\n' +
|
|
'The dashboard title should not have quotation marks in it.\n' +
|
|
`The title should be, at most, ${DASH_TITLE_CHAR_LIMIT} characters.\n` +
|
|
'Respond with only the title of the dashboard.';
|
|
|
|
export const GenAIDashTitleButton = ({ onGenerate }: GenAIDashTitleButtonProps) => {
|
|
return (
|
|
<GenAIButton
|
|
messages={getMessages}
|
|
onGenerate={onGenerate}
|
|
eventTrackingSrc={EventTrackingSrc.dashboardTitle}
|
|
toggleTipTitle={'Improve your dashboard title'}
|
|
/>
|
|
);
|
|
};
|
|
|
|
function getMessages(): Message[] {
|
|
const dashboard = getDashboardSrv().getCurrent()!;
|
|
|
|
return [
|
|
{
|
|
content: TITLE_GENERATION_STANDARD_PROMPT,
|
|
role: Role.system,
|
|
},
|
|
{
|
|
content: `The panels in the dashboard are: ${getDashboardPanelPrompt(dashboard)}`,
|
|
role: Role.system,
|
|
},
|
|
];
|
|
}
|