Skip to content

Commit

Permalink
[Enterprise Search] Remove E5 callout (#172511)
Browse files Browse the repository at this point in the history
## Summary

We are removing the E5 model deployment callout from the Pipelines tab
in favor of the model selector list with action buttons (#171436). The
orphan code cleanup will happen in a separate PR.

<img width="636" alt="Screenshot 2023-12-04 at 14 18 43"
src="https://github.com/elastic/kibana/assets/14224983/1b0fbce1-34aa-44d4-a9b9-f783761ea2bd">
  • Loading branch information
demjened authored Dec 4, 2023
1 parent 6e96cb3 commit fb2e843
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import { IndexNameLogic } from '../index_name_logic';

import { InferencePipelineCard } from './inference_pipeline_card';
import { AddMLInferencePipelineButton } from './ml_inference/add_ml_inference_button';
import { E5MultilingualCallOut } from './ml_inference/e5_multilingual_callout/e5_multilingual_callout';
import { TextExpansionCallOut } from './ml_inference/text_expansion_callout/text_expansion_callout';
import { PipelinesLogic } from './pipelines_logic';

Expand All @@ -39,7 +38,6 @@ export const MlInferencePipelineProcessorsCard: React.FC = () => {
return (
<EuiFlexGroup direction="column" gutterSize="s">
{hasMLPermissions && !isGated && <TextExpansionCallOut isDismissable />}
{hasMLPermissions && !isGated && <E5MultilingualCallOut isDismissable />}
<EuiFlexItem>
<AddMLInferencePipelineButton onClick={() => openAddMlInferencePipelineModal()} />
</EuiFlexItem>
Expand Down

0 comments on commit fb2e843

Please sign in to comment.