For Azure NER, when using the REST API, modelVersion "latest" does not work as expected
When running a Named Entity Recognition request against the REST API, according to the help (https://aka.ms/text-analytics-model-versioning) the model version "latest" should result in using the newest model. On the same page, the latest GA model version is 2023-04-15. However, when I run a query, the response tells me that the used model is 2021-06-01. When explicitly setting the model version to 2023-04-15, an error is returned:
Invalid model version. Possible values are: latest,2021-06-01,2023-09-01. For additional details see https://aka.ms/text-analytics-model-versioning
It seems that (a) the info in the help is outdated (a newer model is already available), and (b) the model version "latest" does not work as expected, using a much older model. Or am I missing something regarding the "latest" model version? Shouldn't it use the 2023-09-01 model?