@Taiye Malomo Are you using the SDK client which supports API version 2022-01-30-preview
?
If not you can install the version 3.2.0b3 - Latest Beta and try the following steps to list the new models supported with this version.
from azure.core.credentials import AzureKeyCredential
from azure.ai.formrecognizer import DocumentModelAdministrationClient
credential = AzureKeyCredential("your_key")
endpoint = "https://<your_resource>.cognitiveservices.azure.com/"
document_model_admin_client = DocumentModelAdministrationClient(endpoint, credential)
models = document_model_admin_client.list_models()
print("We have models with the following ids: {}".format(", ".join([m.model_id for m in models])))
Using the listed model, you can call analyze operation to test the forms using the SDK.
If an answer is helpful, please click on or upvote
which might help other community members reading this thread.