Changelog
Changelog - 2.61.0
Released on
Release notes
- A new way to limit downloads is now available on the
analyze/download
route. You can now limit results per entity.- A common use case is the download of the top 10 documents based on a specific metric. For example:
{
"limit": {
"by": "entity",
"value": 10
}
}
-
Following that update, the
limit
parameter is no longer restricted to2000
documents, you are now able to download numerical metrics with an unlimited number of documents. However accessingtitle
,sentences
,url
, or the documentid
is not available passed the limit.- When using the limit by entity, a "computed limit" will be calculated based on the number of entities in the original instance and the requested limit.
(number of entity * limit.value)
.
- When using the limit by entity, a "computed limit" will be calculated based on the number of entities in the original instance and the requested limit.
-
Downloading thousands of documents using the
analyze/download
route can take a long time. To avoid this a new route allowing asynchronous download is now available. See the documentation page for more information.