You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`bge-reranker-large` is a model by the Beijing Academy of Artificial Intelligence (BAAI) and is hosted by Trieve. This model does not require any additional configuration. and will be used by default on all `hybrid` searches.
310
+
`bge-reranker-large` is a model by the Beijing Academy of Artificial Intelligence (BAAI) and is hosted by Trieve. This model does not require any additional configuration and will be used by default on all `hybrid` searches.
311
311
312
-
To switch your reranker model to cohere's `bge-reranker-large`, make a request to the [update dataset route](/api-reference/dataset/update-dataset-by-id-or-tracking-id). With the following Parameters
312
+
To manually select the `bge-reranker-large` as your reranker model, make a request to the [update dataset route](/api-reference/dataset/update-dataset-by-id-or-tracking-id) with the following parameters:
313
313
314
314
```json
315
315
curl --request POST \
@@ -328,11 +328,39 @@ curl --request POST \
328
328
}'
329
329
```
330
330
331
-
#### Cohere rerank-v3.5
331
+
#### AIMon's aimon-rerank
332
332
333
-
`rerank-v3.5` is a model hosted by docs.cohere.com. To use this model, you must provide the `cohere_api_key` in the `server_configuration` field when creating a dataset.
333
+
`aimon-rerank` is a model hosted by [AIMon](https://docs.aimon.ai/). To use this model, you must provide the `aimon_api_key` in the `server_configuration` field when creating a dataset.
334
334
335
-
To switch your reranker model to cohere's `rerank-v3.5`, make a request to the [update dataset route](/api-reference/dataset/update-dataset-by-id-or-tracking-id). With the following Parameters
335
+
To switch your reranker model to AIMon's `aimon-rerank`, make a request to the [update dataset route](/api-reference/dataset/update-dataset-by-id-or-tracking-id) with the following parameters:
336
+
337
+
```json
338
+
curl --request POST \
339
+
--url https://api.trieve.ai/api/dataset \
340
+
--header 'Authorization: <api-key>' \
341
+
--header 'Content-Type: application/json' \
342
+
--header 'TR-Organization: <tr-organization>' \
343
+
--data '{
344
+
"dataset_name": "New Dataset", // Replace with a name for your dataset
// A task definition can be used to specify the domain of the context documents for AIMon reranker.
354
+
// example of a task definition: "Your task is to grade the relevance of context document(s) in the domain of music and arts."
355
+
}
356
+
}'
357
+
```
358
+
359
+
#### Cohere's rerank-v3.5
360
+
361
+
`rerank-v3.5` is a model hosted by [Cohere](https://docs.cohere.com/cohere-documentation). To use this model, you must provide the `cohere_api_key` in the `server_configuration` field when creating a dataset.
362
+
363
+
To switch your reranker model to Cohere's `rerank-v3.5`, make a request to the [update dataset route](/api-reference/dataset/update-dataset-by-id-or-tracking-id) with the following parameters:
0 commit comments