@@ -16,7 +16,7 @@ Calculates document embeddings using OpenAI models deployed on Azure.
1616
1717### Usage example
1818
19- <!-- test-ignore -->
19+ {/ * test-ignore * /}
2020
2121``` python
2222from haystack import Document
@@ -139,7 +139,7 @@ Embeds strings using OpenAI models deployed on Azure.
139139
140140### Usage example
141141
142- <!-- test-ignore -->
142+ {/ * test-ignore * /}
143143
144144``` python
145145from haystack.components.embedders import AzureOpenAITextEmbedder
@@ -257,7 +257,7 @@ Use it with the following Hugging Face APIs:
257257
258258#### With free serverless inference API
259259
260- <!-- test-ignore -->
260+ {/ * test-ignore * /}
261261
262262``` python
263263from haystack.components.embedders import HuggingFaceAPIDocumentEmbedder
@@ -278,7 +278,7 @@ print(result["documents"][0].embedding)
278278
279279#### With paid inference endpoints
280280
281- <!-- test-ignore -->
281+ {/ * test-ignore * /}
282282
283283``` python
284284from haystack.components.embedders import HuggingFaceAPIDocumentEmbedder
@@ -299,7 +299,7 @@ print(result["documents"][0].embedding)
299299
300300#### With self-hosted text embeddings inference
301301
302- <!-- test-ignore -->
302+ {/ * test-ignore * /}
303303
304304``` python
305305from haystack.components.embedders import HuggingFaceAPIDocumentEmbedder
@@ -443,7 +443,7 @@ Use it with the following Hugging Face APIs:
443443
444444#### With free serverless inference API
445445
446- <!-- test-ignore -->
446+ {/ * test-ignore * /}
447447
448448``` python
449449from haystack.components.embedders import HuggingFaceAPITextEmbedder
@@ -460,7 +460,7 @@ print(text_embedder.run("I love pizza!"))
460460
461461#### With paid inference endpoints
462462
463- <!-- test-ignore -->
463+ {/ * test-ignore * /}
464464
465465``` python
466466from haystack.components.embedders import HuggingFaceAPITextEmbedder
@@ -476,7 +476,7 @@ print(text_embedder.run("I love pizza!"))
476476
477477#### With self-hosted text embeddings inference
478478
479- <!-- test-ignore -->
479+ {/ * test-ignore * /}
480480
481481``` python
482482from haystack.components.embedders import HuggingFaceAPITextEmbedder
@@ -600,7 +600,7 @@ The embedding of each Document is stored in the `embedding` field of the Documen
600600
601601### Usage example
602602
603- <!-- test-ignore -->
603+ {/ * test-ignore * /}
604604
605605``` python
606606from haystack import Document
@@ -756,7 +756,7 @@ Computes document embeddings using OpenAI models.
756756
757757### Usage example
758758
759- <!-- test-ignore -->
759+ {/ * test-ignore * /}
760760
761761``` python
762762from haystack import Document
@@ -902,7 +902,7 @@ You can use it to embed user query and send it to an embedding Retriever.
902902
903903### Usage example
904904
905- <!-- test-ignore -->
905+ {/ * test-ignore * /}
906906
907907``` python
908908from haystack.components.embedders import OpenAITextEmbedder
@@ -1042,7 +1042,7 @@ and send them to DocumentWriter to write into a Document Store.
10421042
10431043### Usage example:
10441044
1045- <!-- test-ignore -->
1045+ {/ * test-ignore * /}
10461046
10471047``` python
10481048from haystack import Document
@@ -1195,7 +1195,7 @@ and send them to DocumentWriter to write a into a Document Store.
11951195
11961196### Usage example:
11971197
1198- <!-- test-ignore -->
1198+ {/ * test-ignore * /}
11991199
12001200``` python
12011201from haystack import Document
@@ -1328,7 +1328,7 @@ You can use it to embed user query and send it to a sparse embedding retriever.
13281328
13291329Usage example:
13301330
1331- <!-- test-ignore -->
1331+ {/ * test-ignore * /}
13321332
13331333``` python
13341334from haystack.components.embedders import SentenceTransformersSparseTextEmbedder
@@ -1451,7 +1451,7 @@ You can use it to embed user query and send it to an embedding retriever.
14511451
14521452Usage example:
14531453
1454- <!-- test-ignore -->
1454+ {/ * test-ignore * /}
14551455
14561456``` python
14571457from haystack.components.embedders import SentenceTransformersTextEmbedder
0 commit comments