Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('actionTypeRegistry.get() works', () => {
test('connector type static data is as expected', () => {
expect(actionTypeModel.id).toEqual(ACTION_TYPE_ID);
expect(actionTypeModel.selectMessage).toBe(
'Use the Elastic LLM for your chat and RAG usecases.'
'Use the Elastic Managed LLM for your chat and RAG usecases.'
);
expect(actionTypeModel.actionTypeTitle).toBe('AI Connector');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function getConnectorType(): InferenceConnector {
iconClass: 'sparkles',
isExperimental: true,
selectMessage: i18n.translate('xpack.stackConnectors.components.inference.selectMessageText', {
defaultMessage: 'Use the Elastic LLM for your chat and RAG usecases.',
defaultMessage: 'Use the Elastic Managed LLM for your chat and RAG usecases.',
}),
actionTypeTitle: INFERENCE_CONNECTOR_TITLE,
validateParams: async (
Expand Down