[Search] Fix copy nit in semantic search guide (#189249)

- We use "Start by" twice, removes the second instance
- Tweaks inference endpoint copy
This commit is contained in:
Liam Thompson 2024-07-26 13:33:14 +01:00 committed by GitHub
parent 1b84a24872
commit e1f20116cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -236,7 +236,7 @@ export const SemanticSearchGuide: React.FC = () => {
<h2>
<FormattedMessage
id="xpack.enterpriseSearch.semanticSearch.guide.setupInferenceEndpoint.title"
defaultMessage="Set up an inference endpoint"
defaultMessage="Set up an embedding model"
/>
</h2>
</EuiTitle>
@ -245,7 +245,7 @@ export const SemanticSearchGuide: React.FC = () => {
<p>
<FormattedMessage
id="xpack.enterpriseSearch.semanticSearch.guide.setupInferenceEndpoint.description"
defaultMessage="Start by setting up an inference endpoint to manage the machine learning model for your task. This may take a while to complete depending on the model you choose and your ML node configuration."
defaultMessage="To transform your text into embeddings within Elasticsearch, use an inference endpoint to access popular embedding models from Elastic, Amazon, OpenAI, and more. Start by setting up the inference endpoint to manage the model for your task. This may take a while to complete depending on the model you choose and your ML node configuration."
/>
</p>
<p>
@ -293,7 +293,7 @@ export const SemanticSearchGuide: React.FC = () => {
<p>
<FormattedMessage
id="xpack.enterpriseSearch.semanticSearch.guide.createIndex.description"
defaultMessage="Start by creating an index with one or more {semanticText} fields."
defaultMessage="Now you need to create an index with one or more {semanticText} fields."
values={{ semanticText: <EuiCode>semantic_text</EuiCode> }}
/>
</p>