Skip to content

Commit 0af9906

Browse files
committed
add TOC updates
1 parent 077da6b commit 0af9906

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

articles/ai-studio/how-to/deploy-models-cohere-rerank.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In this section, you learn about the two Cohere Rerank models that are available
3030
You can browse the Cohere family of models in the [Model Catalog](model-catalog-overview.md) by filtering on the Cohere collection.
3131

3232
### Cohere Rerank 3 - English
33-
Cohere Rerank English is the markets leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
33+
Cohere Rerank English is the market's leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
3434
Rerank should be used as a ranker after initial retrieval (i.e. an initial search system finds the top-100 most relevant documents for a larger corpus of documents).
3535

3636
Rerank supports JSON objects as documents where users can specify at query time the fields (keys) that semantic search should be applied over.
@@ -41,7 +41,7 @@ Rerank supports JSON objects as documents where users can specify at query time
4141
Rerank English has SOTA performance on benchmarks in Code Retreival, Semi-structured Data Retreival, and Long Context. Cohere evaluated Rerank English on various configurations with BM25 (lexical search) as the initial retrieval step as well as Embeddings as the initial retrieval step <a href="https://github.com/cohere-ai/notebooks/blob/main/public_rerank_benchmarks/bm25_with_rerank.md">BM25 with Rerank v3.0 General Retreival Evaluation Results</a> and <a href="https://github.com/cohere-ai/notebooks/blob/main/public_rerank_benchmarks/embed_with_rerank.md">Embeddings with Rerank v3.0 General Retreival Evaluation Results</a>
4242

4343
### Cohere Rerank 3 - Multilingual
44-
Cohere Rerank Multilingual is the markets leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank Multilingual supports 100+ languages and can be used to search within a language (e.g., search with a French query on French documents) and across languages (e.g., search with an English query on Chinese documents). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
44+
Cohere Rerank Multilingual is the market's leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank Multilingual supports 100+ languages and can be used to search within a language (e.g., search with a French query on French documents) and across languages (e.g., search with an English query on Chinese documents). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
4545
Rerank should be used as a ranker after initial retrieval (i.e. an initial search system finds the top-100 most relevant documents for a larger corpus of documents).
4646

4747
Rerank supports JSON objects as documents where users can specify at query time the fields (keys) that semantic search should be applied over.
@@ -126,10 +126,12 @@ These models can be consumed using the Rerank API.
126126

127127
### v1/rerank Request
128128

129+
```json
129130
POST /v1/rerank HTTP/1.1
130131
Host: <DEPLOYMENT_URI>
131132
Authorization: Bearer <TOKEN>
132133
Content-type: application/json
134+
```
133135

134136
### v1/rerank Request Schema
135137

@@ -169,6 +171,7 @@ The `results` object is a dictionary with the following fields:
169171

170172
**Request**
171173

174+
```json
172175
{
173176
"query": "What is the capital of the United States?",
174177
"rank_fields": ["Title", "Content"],
@@ -179,9 +182,11 @@ The `results` object is a dictionary with the following fields:
179182
],
180183
"top_n": 3
181184
}
185+
```
182186

183187
**Response**
184188

189+
```json
185190
{
186191
"id": "571e6744-3074-457f-8935-08646a3352fb",
187192
"results": [
@@ -219,6 +224,7 @@ The `results` object is a dictionary with the following fields:
219224
}
220225
]
221226
}
227+
```
222228

223229
#### More inference examples
224230

articles/ai-studio/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ items:
112112
href: how-to/deploy-models-cohere-command.md
113113
- name: Deploy Cohere Embed models
114114
href: how-to/deploy-models-cohere-embed.md
115+
- name: Deploy Cohere Rerank models
116+
href: how-to/deploy-models-cohere-rerank.md
115117
- name: Meta Llama models
116118
items:
117119
- name: Deploy Meta Llama family models

articles/machine-learning/how-to-deploy-models-cohere-rerank.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can browse the Cohere family of models in the model catalog by filtering on
2828
In this article, you learn how to use Azure Machine Learning studio to deploy the Cohere models as a serverless API with pay-as you go billing.
2929

3030
### Cohere Rerank 3 - English
31-
Cohere Rerank English is the markets leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
31+
Cohere Rerank English is the market's leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
3232
Rerank should be used as a ranker after initial retrieval (i.e. an initial search system finds the top-100 most relevant documents for a larger corpus of documents).
3333

3434
Rerank supports JSON objects as documents where users can specify at query time the fields (keys) that semantic search should be applied over.
@@ -39,7 +39,7 @@ Rerank supports JSON objects as documents where users can specify at query time
3939
Rerank English has SOTA performance on benchmarks in Code Retreival, Semi-structured Data Retreival, and Long Context. Cohere evaluated Rerank English on various configurations with BM25 (lexical search) as the initial retrieval step as well as Embeddings as the initial retrieval step <a href="https://github.com/cohere-ai/notebooks/blob/main/public_rerank_benchmarks/bm25_with_rerank.md">BM25 with Rerank v3.0 General Retreival Evaluation Results</a> and <a href="https://github.com/cohere-ai/notebooks/blob/main/public_rerank_benchmarks/embed_with_rerank.md">Embeddings with Rerank v3.0 General Retreival Evaluation Results</a>
4040

4141
### Cohere Rerank 3 - Multilingual
42-
Cohere Rerank Multilingual is the markets leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank Multilingual supports 100+ languages and can be used to search within a language (e.g., search with a French query on French documents) and across languages (e.g., search with an English query on Chinese documents). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
42+
Cohere Rerank Multilingual is the market's leading reranking model used for semantic search and retrieval-augmented generation (RAG). Rerank Multilingual supports 100+ languages and can be used to search within a language (e.g., search with a French query on French documents) and across languages (e.g., search with an English query on Chinese documents). Rerank enables you to significantly improve search quality by augmenting traditional key-word based search systems with a semantic-based reranking system which can contextualize the meaning of a user's query beyond keyword relevance. Cohere's Rerank delivers much higher quality results than just embedding-based search, lexical search and even hybrid search, and it requires only adding a single line of code into your application.
4343
Rerank should be used as a ranker after initial retrieval (i.e. an initial search system finds the top-100 most relevant documents for a larger corpus of documents).
4444

4545
Rerank supports JSON objects as documents where users can specify at query time the fields (keys) that semantic search should be applied over.
@@ -113,14 +113,16 @@ The previously mentioned Cohere models can be consumed using the chat API.
113113

114114
For more information on using the APIs, see the [reference](#rerank-api-reference-for-cohere-rerank-models-deployed-as-a-serverless-api) section.
115115

116-
## Rerank API reference for Cohere Rerank models deployed as a service
116+
## Rerank API reference for Cohere Rerank models deployed as a serverless API
117117

118118
### v1/rerank Request
119119

120+
```json
120121
POST /v1/rerank HTTP/1.1
121122
Host: <DEPLOYMENT_URI>
122123
Authorization: Bearer <TOKEN>
123124
Content-type: application/json
125+
```
124126

125127
### v1/rerank Request Schema
126128

@@ -160,6 +162,7 @@ The `results` object is a dictionary with the following fields:
160162

161163
**Request**
162164

165+
```json
163166
{
164167
"query": "What is the capital of the United States?",
165168
"rank_fields": ["Title", "Content"],
@@ -170,9 +173,11 @@ The `results` object is a dictionary with the following fields:
170173
],
171174
"top_n": 3
172175
}
176+
```
173177

174178
**Response**
175179

180+
```json
176181
{
177182
"id": "571e6744-3074-457f-8935-08646a3352fb",
178183
"results": [
@@ -210,6 +215,7 @@ The `results` object is a dictionary with the following fields:
210215
}
211216
]
212217
}
218+
```
213219

214220
#### More inference examples
215221

articles/machine-learning/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -606,6 +606,8 @@
606606
href: how-to-deploy-models-cohere-command.md
607607
- name: How to deploy Cohere Embed models
608608
href: how-to-deploy-models-cohere-embed.md
609+
- name: How to deploy Cohere Rerank models
610+
href: how-to-deploy-models-cohere-rerank.md
609611
- name: Deploy Meta Llama models
610612
items:
611613
- name: How to deploy Meta Llama family models

0 commit comments

Comments
 (0)