Skip to content

Commit 538ea6a

Browse files
committed
Revert "image paths"
This reverts commit 066694b.
1 parent 066694b commit 538ea6a

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

solutions/search/rag/playground-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The `{{query}}` variable represents the user’s question, rewritten as an {{es}
2323

2424
The following screenshot shows the query editor in the Playground UI. In this simple example, the `books` index has two fields: `author` and `name`. Selecting a field adds it to the `fields` array in the query.
2525

26-
:::{image} ../../images/kibana-query-interface.png
26+
:::{image} ../../../images/kibana-query-interface.png
2727
:alt: View and modify queries
2828
:class: screenshot
2929
:::

solutions/search/rag/playground.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ You can also use locally hosted LLMs that are compatible with the OpenAI SDK. On
112112

113113
## Getting started [playground-getting-started]
114114

115-
:::{image} ../../images/kibana-get-started.png
115+
:::{image} ../../../images/kibana-get-started.png
116116
:alt: get started
117117
:class: screenshot
118118
:::
@@ -183,7 +183,7 @@ Once you’ve connected to your LLM provider, it’s time to choose the data you
183183
:::::{tip}
184184
You can always add or remove indices later by selecting the **Data** button from the main Playground UI.
185185

186-
:::{image} ../../images/kibana-data-button.png
186+
:::{image} ../../../images/kibana-data-button.png
187187
:alt: data button
188188
:class: screenshot
189189
:::
@@ -201,14 +201,14 @@ Since 8.15.0 (and earlier for {{es}} Serverless), the main Playground UI has two
201201

202202
The **chat mode** is selected when you first set up your Playground instance.
203203

204-
:::{image} ../../images/kibana-chat-interface.png
204+
:::{image} ../../../images/kibana-chat-interface.png
205205
:alt: chat interface
206206
:class: screenshot
207207
:::
208208

209209
To switch to **query mode**, select **Query** from the main UI.
210210

211-
:::{image} ../../images/kibana-query-interface.png
211+
:::{image} ../../../images/kibana-query-interface.png
212212
:alt: query interface
213213
:class: screenshot
214214
:::
@@ -250,7 +250,7 @@ Use the **View code** button to see the Python code that powers the chat interfa
250250
* {{es}} Python Client + LLM provider
251251
* LangChain + LLM provider
252252

253-
:::{image} ../../images/kibana-view-code-button.png
253+
:::{image} ../../../images/kibana-view-code-button.png
254254
:alt: view code button
255255
:class: screenshot
256256
:::

solutions/search/ranking/learning-to-rank-ltr.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This feature was introduced in version 8.12.0 and is only available to certain s
1212

1313
Learning To Rank (LTR) uses a trained machine learning (ML) model to build a ranking function for your search engine. Typically, the model is used as a second stage re-ranker, to improve the relevance of search results returned by a simpler, first stage retrieval algorithm. The LTR function takes a list of documents and a search context and outputs ranked documents:
1414

15-
:::{image} ../../images/elasticsearch-reference-learning-to-rank-overview.png
15+
:::{image} ../../../images/elasticsearch-reference-learning-to-rank-overview.png
1616
:alt: Learning To Rank overview
1717
:title: Learning To Rank overview
1818
:name: learning-to-rank-overview-diagram
@@ -30,7 +30,7 @@ The LTR model is usually trained on a judgment list, which is a set of queries a
3030

3131
The judgment list is the main input used to train the model. It consists of a dataset that contains pairs of queries and documents, along with their corresponding relevance labels. The relevance judgment is typically either a binary (relevant/irrelevant) or a more granular label, such as a grade between 0 (completely irrelevant) to 4 (highly relevant). The example below uses a graded relevance judgment.
3232

33-
:::{image} ../../images/elasticsearch-reference-learning-to-rank-judgment-list.png
33+
:::{image} ../../../images/elasticsearch-reference-learning-to-rank-judgment-list.png
3434
:alt: Judgment list example
3535
:title: Judgment list example
3636
:name: learning-to-rank-judgment-list-example
@@ -59,7 +59,7 @@ These features fall into one of three main categories:
5959

6060
To prepare the dataset for training, the features are added to the judgment list:
6161

62-
:::{image} ../../images/elasticsearch-reference-learning-to-rank-feature-extraction.png
62+
:::{image} ../../../images/elasticsearch-reference-learning-to-rank-feature-extraction.png
6363
:alt: Judgment list with features
6464
:title: Judgment list with features
6565
:name: learning-to-rank-judgement-feature-extraction

solutions/search/search-approaches/near-real-time-search.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Lucene, the Java libraries on which {{es}} is based, introduced the concept of p
1111

1212
Sitting between {{es}} and the disk is the filesystem cache. Documents in the in-memory indexing buffer ([Figure 1](#img-pre-refresh)) are written to a new segment ([Figure 2](#img-post-refresh)). The new segment is written to the filesystem cache first (which is cheap) and only later is it flushed to disk (which is expensive). However, after a file is in the cache, it can be opened and read just like any other file.
1313

14-
:::{image} ../../images/elasticsearch-reference-lucene-in-memory-buffer.png
14+
:::{image} ../../../images/elasticsearch-reference-lucene-in-memory-buffer.png
1515
:alt: A Lucene index with new documents in the in-memory buffer
1616
:title: A Lucene index with new documents in the in-memory buffer
1717
:name: img-pre-refresh
1818
:::
1919

2020
Lucene allows new segments to be written and opened, making the documents they contain visible to search ​without performing a full commit. This is a much lighter process than a commit to disk, and can be done frequently without degrading performance.
2121

22-
:::{image} ../../images/elasticsearch-reference-lucene-written-not-committed.png
22+
:::{image} ../../../images/elasticsearch-reference-lucene-written-not-committed.png
2323
:alt: The buffer contents are written to a segment, which is searchable, but is not yet committed
2424
:title: The buffer contents are written to a segment, which is searchable, but is not yet committed
2525
:name: img-post-refresh

solutions/search/search-connection-details.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ To connect to your {{es}} deployment, you need either a Cloud ID or an {{es}} en
2121
1. Navigate to the Elastic Cloud home page.
2222
2. In the main menu, click **Manage this deployment**.
2323

24-
:::{image} ../../images/kibana-manage-deployment.png
24+
:::{image} ../../../images/kibana-manage-deployment.png
2525
:alt: manage deployment
2626
:class: screenshot
2727
:::
2828

2929
3. The Cloud ID is displayed on the right side of the page.
3030

31-
:::{image} ../../images/kibana-cloud-id.png
31+
:::{image} ../../../images/kibana-cloud-id.png
3232
:alt: cloud id
3333
:class: screenshot
3434
:::
@@ -39,14 +39,14 @@ To connect to your {{es}} deployment, you need either a Cloud ID or an {{es}} en
3939

4040
1. To navigate to **API keys**, use the [**global search bar**](../../get-started/the-stack.md#kibana-navigation-search).
4141

42-
:::{image} ../../images/kibana-api-keys-search-bar.png
42+
:::{image} ../../../images/kibana-api-keys-search-bar.png
4343
:alt: api keys search bar
4444
:class: screenshot
4545
:::
4646

4747
2. Click **Create API key**.
4848

49-
:::{image} ../../images/kibana-click-create-api-key.png
49+
:::{image} ../../../images/kibana-click-create-api-key.png
5050
:alt: click create api key
5151
:class: screenshot
5252
:::
@@ -62,7 +62,7 @@ To connect to your {{es}} deployment, you need either a Cloud ID or an {{es}} en
6262
1. Navigate to the serverless project’s home page.
6363
2. Scroll down to the **Copy your connection details** section, and copy the **Elasticsearch endpoint**.
6464

65-
:::{image} ../../images/kibana-serverless-connection-details.png
65+
:::{image} ../../../images/kibana-serverless-connection-details.png
6666
:alt: serverless connection details
6767
:class: screenshot
6868
:::
@@ -79,7 +79,7 @@ The **Cloud ID** is also displayed in the Copy your connection details section,
7979
1. Navigate to the serverless project’s home page.
8080
2. Scroll down to the **Add an API Key** section, and click **New**.
8181

82-
:::{image} ../../images/kibana-serverless-create-an-api-key.png
82+
:::{image} ../../../images/kibana-serverless-create-an-api-key.png
8383
:alt: serverless create an api key
8484
:class: screenshot
8585
:::

solutions/search/serverless-elasticsearch-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Once your project is set up, you’ll be directed to a page where you can create
6060
1. Enter a name for your index.
6161
2. Click **Create my index**. You can also create the index by clicking on **Code** to view and run code through the command line.
6262

63-
:::{image} ../../images/serverless-get-started-create-an-index.png
63+
:::{image} ../../../images/serverless-get-started-create-an-index.png
6464
:alt: Create an index.
6565
:::
6666

solutions/search/site-or-app/behavioral-analytics-event.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This allows you to quickly check both absolute numbers and trends (tracked in pe
3131

3232
The following screenshot shows an example **Overview** dashboard:
3333

34-
:::{image} ../../images/elasticsearch-reference-analytics-overview-dashboard.png
34+
:::{image} ../../../images/elasticsearch-reference-analytics-overview-dashboard.png
3535
:alt: Analytics Overview dashboard showing the number of searches
3636
:class: screenshot
3737
:::
@@ -53,7 +53,7 @@ You can also easily sort in ascending or descending order by clicking on the hea
5353

5454
The following screenshot shows the **Locations** tab of an **Explorer** dashboard, with a list of top locations in descending order:
5555

56-
:::{image} ../../images/elasticsearch-reference-analytics-explorer-dashboard.png
56+
:::{image} ../../../images/elasticsearch-reference-analytics-explorer-dashboard.png
5757
:alt: Explorer dashboard showing the top locations in descending order
5858
:class: screenshot
5959
:::
@@ -67,7 +67,7 @@ Discover works with [data views^](../../../explore-analyze/find-and-organize/dat
6767

6868
The following screenshot shows you where to find the data view dropdown menu in Discover:
6969

70-
:::{image} ../../images/elasticsearch-reference-discover-data-view-analytics.png
70+
:::{image} ../../../images/elasticsearch-reference-discover-data-view-analytics.png
7171
:alt: Analytics Discover app showing the data view dropdown menu
7272
:class: screenshot
7373
:::
@@ -84,7 +84,7 @@ Discover has a lot of options, but here’s a quick overview of how to get start
8484

8585
The following screenshot shows a Lens visualization of an `event.action` distribution:
8686

87-
:::{image} ../../images/elasticsearch-reference-discover-lens-analytics.png
87+
:::{image} ../../../images/elasticsearch-reference-discover-lens-analytics.png
8888
:alt: Analytics Discover app showing a Lens visualization of an event action distribution
8989
:class: screenshot
9090
:::

0 commit comments

Comments
 (0)